Hi there,
Thanks for updating. It’s because you have forced the mobile menu to be fixed.
.x-navbar-fixed-top {
position: fixed;
}
It’s not supposed to be fixed on mobile.
However in that case you can update your current code to following within the media query :
.x-navbar-fixed-top {
position: fixed;
height: 400px;
overflow-y: scroll;
}
Hope this helps.
Cheers!