My website (themmaguru.com) currently has a fixed menu, which I like on desktop and tablet, however, how do I make this static on mobile only? Also, how do I move my three lines menu button (on mobile) move slightly to the left?
Hi Anthony,
Thanks for reaching out.
Mobile menu shouldn’t be fixed and that’s how it should be. But, it came fixed because of this custom CSS
@media (max-width:979px){
.x-navbar-fixed-top{
position:fixed !important;
}
}
Please remove it and it will return back to static. As for the alignment, please add this CSS as well
.x-btn-navbar {
margin-right: 20px;
}
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.