Topic Resolution: Resolved
  • Closed
  • cindi@BRC
    Spectator
    06.10.2015 at 02:11 #21192

    My client would like the logo in the header to be removed only from the home page since their name is on the bootstrap sliders. I am not sure the best way to do this, would love some help. Best to make a new page template for all other pages and leave logo on homepage or vise versa?
    and what code am I changing?

    I am a medium range programmer on this stuff so simple is best for me.

    Using evolve plus here is the link to the site:
    http://www.tricitytech.net/wpPPM/

    Denzel Chia
    Moderator
    Posts: 2656
    06.10.2015 at 11:49 #21225

    Hi,

    Please use the following in Theme Options -> Custom CSS

    .home #logo-image {
    display: none !important;
    }

    or use the following to remove the header

    .home .header {
    display: none !important;
    }

    The css class .home is only available on homepage. So it does not affect other pages.

    Thanks!

    cindi@BRC
    Spectator
    Posts: 12
    06.10.2015 at 20:20 #21240

    oy vey!… I tend to make it too complicated. Thanks! Awesome! it worked. I should have known…

    Thanks Denzel!

    Denzel Chia
    Moderator
    Posts: 2656
    07.10.2015 at 10:21 #21251

    Thank you!