Archived topic
Can we fix at the top the secondary menu during scrolling down?
3 replies · Started by Sara Genone on November 30, 2020
Viewing posts 1–4 of 4
Hi all
I need to fix at the top (into the sticky navigation bar) the secondary navigation bar ?
Is it possible to do that in desktop and also mobile view?
Thank you in advance for help
Sara
Hi there,
you would need to:
1. Disable the Sticky Navigation and Sticky Mobile Header options.
2. Replace your current sticky CSS and use this:
.site-header,
#mobile-header,
#site-navigation,
#secondary-navigation {
position: -webkit-sticky;
position: sticky;
top: 0;
}
.site-header,
#mobile-header {
top: 48px;
z-index: 1000;
}
#site-navigation {
top: 198px;
}
Thank you David
Sara
You're welcome
This archived topic is closed to new replies.