Fixed top menu on mobile

Hi,

I want my mobile menu to scroll as well.

How can I do this?

I found this code somewhere but it isn’t working:

@media (max-width: 979px){
.x-navbar-fixed-top, .x-navbar-fixed-left, .x-navbar-fixed-right {
position: relative;
}
}

Hi @Roovers,

Thanks for reaching out.

I checked and it’s scrolling well, you mean fixing it in position so it follows as you scroll? It could be this CSS,

@media (max-width: 979px){
.x-navbar-fixed-top, .x-navbar-fixed-left, .x-navbar-fixed-right {
position: fixed;
width: 100%;
}
}

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.