Hello
We were having issues with our main navigation kicking down content in smaller screens so we added the following code to our CSS to prevent this issue:
@media(max-width: 1200px){
.masthead-inline .x-btn-navbar {
display: block;
float: right;
}
.x-nav-wrap.desktop {
display: none;
}
.x-nav-wrap.mobile.collapse {
display: none;
}
.x-nav-wrap.mobile.collapse.in {
display: block;
}
}
This is working great to switch to the mobile nav in a smaller browser window - however the navbar menu is now not clickable in some sizes.