Hello,
I recently implemented the following CSS to make my menu (UberMenu) anchored to the top of the page on smaller viewports:
@media (max-width: 979px) {
.x-navbar-fixed-top {
position: fixed !important;
}
}
On some devices, specifically mobile devices where the contents of the sub-menu may exceed the vertical viewport dimensions the menu will not scroll down, the body/page content will scroll instead.
I’ve tried adjusting the z-index with no luck.
Any ideas?
[EDIT]
URL is: http://www.comdoc.cerebral-marketing.com
Thanks!