Hello,
I currently found this code going through the forum to re-size mobile mode at a different screen width.
@media (max-width: 1200px){
.x-nav-wrap.desktop {
display: none;
}
.x-btn-navbar {
display: block;
float: right;
}
.x-nav-wrap.mobile.collapse.in {
display: block !important;
}
}
The layout works, however when I click the menu button it won’t open up anymore. If i remove this code, it works again.
Could someone guide me to see what I need to add to have my sub menu open up.