Jupiter
Mobile menu is not visible
From your WordPress Dashboard, go to Jupiter > Theme Options > Advanced > Custom CSS and insert the following:
1 2 3 4 5 6 |
header[id^="mk-header"] .mk-nav-responsive-link { display: none !important; } header[id^="mk-header"] .mk-header-nav-container { display: block !important; } |
Mobile menu disappears when clicked
From your WordPress Dashboard, go to Jupiter > Theme Options > Advanced > Custom JS and enter the following:
1 2 3 |
jQuery(document).ready(function( $ ) { $(".mk-responsive-wrap").off().unbind(); }); |