Hi There guys… Client of mine chogogotours.com responsive menu does not work… I have updated and checkout plugins but to no avail - pls advise
Hi @radicalstate,
I checked your site and the issue seems to be caused by the custom CSS code you have added that makes the mobile menu button display sooner than 980px device width.
Kindly try to remove the custom code you have added for this then try the code below:
@media (min-width: 1041px) {
.x-nav-wrap.desktop {
display: none
}
.x-nav-wrap.mobile {
display: block
}
.x-nav-wrap.mobile.x-collapsed {
display: none;
}
.masthead-inline .x-btn-navbar {
display: block;
float: right
}
.masthead-stacked .x-btn-navbar {
display: inline-block
}
.x-navbar-fixed-top-active .x-navbar-wrap {
height: auto
}
}
Hope this helps.
It worked like a charm! thank you!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.