Topic Resolution: Resolved
  • Closed
  • cindi@BRC
    Spectator
    October 6, 2015 at 2:11 am #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: 2672
    October 6, 2015 at 11:49 am #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
    October 6, 2015 at 8:20 pm #21240

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

    Thanks Denzel!

    Denzel Chia
    Moderator
    Posts: 2672
    October 7, 2015 at 10:21 am #21251

    Thank you!