Site logo

Archived topic

Show hamburger menu on sticky only

5 replies · Started by Adrian on July 16, 2021

Viewing posts 1–6 of 6

Hi,
I followed the instructions on this thread Hamburger menu on desktop to change desktop menu to hamburger when navigation is sticky.

It all worked ok, but there is only one issue about the icon. I would like to hide the hamburger icon when navigation is non sticky, that is before starting to scroll down. Is that possible?

Thanks

Hi there,

can you share a link to your site so i can see why that code isn't working correctly.

Try adding this to remove the toggle when the nav is not stuck:

@media(min-width: 769px) {
    .main-navigation:not(.is_stuck) .slideout-toggle {
        display: none;
    }
}

It worked like a charm David. Many thanks!

Glad to hear that!

This archived topic is closed to new replies.