Site logo

Archived topic

Remove navigation but keep sticky

6 replies · Started by Damiaan van Vliet on April 4, 2018

Viewing posts 1–7 of 7

Hi support,
I want to have the main navigation on home page removed but when scrolling down the sticky navigation (which I setup with customizer) should be visible.
I tried several css solutions but I don't know how to establish that.

Thanks for the help!

Hi there,

Try this:

.main-navigation:not(.navigation-stick) {
    display: none;
}

Hi Leo, code looks like it should work but it does not.
Yes, the main-navigation is gone but when scrolling down navigation is not visible.

Can you link me to the page in question with the CSS applied?

This should do it:

#site-navigation:not(.navigation-stick), 
#sticky-placeholder {
    height: 0;
    overflow: hidden;
}

YES!!! That's it!
Wow, you guys rock!

Thanks @Leo and @Tom.

Glad we could help :)

This archived topic is closed to new replies.