Hi all,
This site:
Given the width of the menu, I want to have the mobile icon/menu show up sooner so the navigation doesn’t slide under the logo when shrinking screen size. I’ve seen many ways to adjust the cross-over point, this seemed easiest and works:
@media (max-width: 1150px){
.x-nav-wrap.desktop {
display: none;
}
.x-btn-navbar {
display: block;
float: right;
}
.x-nav-wrap.mobile.collapse.in {
display: block;
}
}
If you drag the browser window smaller, the desktop nav does switch to the mobile button. However, the button doesn’t work until you shrink the window quite a bit further. Feels like the CSS is doing the trick of “turning on” the mobile menu icon. But the underlying functionalilty is still waiting for a different cross over point (maybe 979?)



