Hi see here: https://www.logoglo.com/
I have this css to make the mobile menu fixed top:
@media (max-width:979px) {
.x-navbar-fixed-top {
position: fixed!important
}
}
And I had this js code to make the menu disappear once clicked, so it scrolls down to (eg) why us, and closes.
!function(n){n(".x-one-page-navigation-active .x-navbar .mobile .x-nav > .menu-item:not(.menu-item-has-children)").on("click touchend",function(){n(".x-btn-navbar").trigger("click")})}(jQuery);
jQuery('document').ready(function($) {;
});
Is there a way to make the menu hide once click on? in mobile view.
Thanks.