Making Small logo on header disappear until scrolling down
URL to the page in question:
http://theskyisnotlimited.org/dev/our-work/
-
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!!!!!!
Good Morning Wendy,
You can hide the logo on the home page until you scroll. Here’s how to do that:
- In your WordPress dashboard click on the Appearance section and choose Theme Options.
- From the tabs at the top, choose the Advanced one.
- Scroll down to the Custom CSS box and add this:
.home #header #logo { visibility: hidden; }
.home #header.scroll #logo { visibility: visible; }
- 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
- The topic ‘Making Small logo on header disappear until scrolling down’ is closed to new replies.