Hello,
I’m trying to change the mobile breakpoint of my site, since it is too wide for smaller devices. So I want to mobile button to display around 1200px.
This one I got from this forum got me close to achieving it
@media (max-width: 1200px){
.x-nav-wrap.desktop {
display: none !important;
}
.masthead-inline .x-btn-navbar {
display: block !important;
float: right !important;
}
.x-nav-wrap.mobile.collapse.in {
display: block !important;
}
}
The mobile menu button appears at the right width, but when I click it, there is no menu.
I’ve tried numerous other CSS code examples from this forum, but they all didn’t work. Can you help me to achieve this?