Hi, I’m running x-theme for a site and I am trying to get it to switch to the mobile menu at 1300px screen width with the following code. The mobile nav menu is still remaining hidden even though I can see that the classes or changing when I toggle the menu button. I’m probably missing something really simple, but I haven’t been able to figure out what it is.
@media (max-width: 1300px) {
.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;
}
.x-nav-wrap.mobile.in, .x-nav-wrap.mobile.collapsing {
display: block;
}
Thanks for your help.
