Is there a way to make the nav bar in the header sticky only on desktop and not on mobile? I only want the navigation bar to be sticky on desktop where there is a lot more visual real estate.
Thanks
Is there a way to make the nav bar in the header sticky only on desktop and not on mobile? I only want the navigation bar to be sticky on desktop where there is a lot more visual real estate.
Thanks
Hi There,
Thanks for writing in!
If you are choosing the fixed top menu, the header will only be sticky in desktop not in the mobile device.
Hope this helps!
Sorry, I might be missing something but I do have “fixed top” selected and my nav bar is sticky on mobile devices as well. You can view my website at golficity.com
Hi there,
Apologies for the confusion. To do that, please add this code in the Global CSS:
@media (max-width: 979px) {
.x-navbar-fixed-top {
position: relative;
}
}
Hope this helps.
Looks like that did the trick. Thank you!
You’re most welcome!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.