Hi, I’ve used some custom CSS to make the hamburger menu the only menu. It works okay in Firefox, but in other browsers it doesn’t collapse. Can you please help?
CUSTOM CSS
/*HAMBURGER MENU FUNCTIONS > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > */
.x-nav-wrap.mobile {
background: #fff;
width: 40%;
float: right;
}
.nav li a {
color: #333;
}
/* Enable Mobile Navbar on Desktop */
.x-navbar .desktop {
display: none !important;
}
.x-navbar .x-btn-navbar {
display: inline-block;
}
.x-nav-wrap.mobile.collapse.in {
display: none;
}
.x-nav-wrap.mobile.collapse {
display: none;
}
.x-nav-wrap.mobile {
display: block;
}
.x-btn-navbar {
text-shadow: none;
color: #fff !important;
float: right;
}