Archived topic
Make top and main navigation both sticky
3 replies · Started by Henk on March 29, 2022
Hi,
I have two menu bars at the top of the page.
The top menu is called secondary-navigation and the main menu is called main-navigation.
With the help of the following CSS I managed to make the main-navigation sticky, but the secondary-navigation is scrolling away.
Can you tell me what I'm missing to make the secondary-navigation also sticky?
@media (min-width:769px){
.secondary-navigation {
position: -webkit-sticky;
position: sticky;
top: 0px;
z-index: 10000;
}
.main-navigation {
position: -webkit-sticky;
position: sticky;
top: 30px;
z-index: 1000;
}
}
Hi Henk,
I just checked your site, both navigations are sticky on desktop:
https://www.screencast.com/t/VlB99rNz
Make sure your browser cache is cleared :)
Oh no, not again :-)
Thanks!
Lol it happens all the time :P