Menu mobile dont work (porto theme).
-
Hi, I state that my advice is not to install this plugin, as the paid assistance does not solve any problems.
But if you can’t uninstall for now, here’s a mini guide to making the plugin compatible with porto theme.If you are using the header builder.
1- The mobile menu does not open after updating port to version 6.2.
Solution:
The menu class is hidden.
Insert this line in your custom css:.mobile-nav-wrap .quadmenu-navbar-nav {display: block! important;}
2- The dropdown in mobile does not open.
The reason is an error in the plugin when compiling the script.
Solution:
insert this line in head:<script> jQuery(window).ready(function($){ jQuery('body').on('click','.quadmenu-dropdown-toggle',function(e){ console.log(e); e.preventDefault(); jQuery(this).parent().find('> div').toggleClass('openmenu_mobile'); }); }); </script> <style> .openmenu_mobile{ max-height:initial!important; display:block!important; } </style>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Menu mobile dont work (porto theme).’ is closed to new replies.