Making Small logo on header disappear until scrolling down

Support Area Forums Grassroots Making Small logo on header disappear until scrolling down

Viewing 2 posts - 1 through 2 (of 2 total)
URL to the page in question: http://theskyisnotlimited.org/dev/our-work/
  • Author
    Posts
  • #38181
    wendy Butcher
    Participant

    Is there a way to not have the small logo appear until you scroll down on the home page or not have it on the home page but on the other pages?
    On the mobile device it overlaps the type on the hero until you scroll.
    It would be ideal if there was a way.
    Thanks again Bill.
    I will give you a huge recommendation for your support!!!!!!

    #38188
    Bill Robbins
    Moderator

    Good Morning Wendy,

    You can hide the logo on the home page until you scroll. Here’s how to do that:

    1. In your WordPress dashboard click on the Appearance section and choose Theme Options.
    2. From the tabs at the top, choose the Advanced one.
    3. Scroll down to the Custom CSS box and add this:
      
      .home #header #logo { visibility: hidden; }
      .home #header.scroll #logo { visibility: visible; }
      
    4. Save your changes.

    If you’d rather do that with all pages that have a hero area and not just the home page, you can add this instead:

    
    .hero #header #logo { visibility: hidden; }
    .hero #header.scroll #logo { visibility: visible; }
    

    Take care,
    Bill

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Making Small logo on header disappear until scrolling down’ is closed to new replies.