I use the last version on canvas 6.0, is possible alway use mobile menu (because i have a lot of item to add in menu)
- i change the break poin in style css (row #3367)
@media (min-width: 2000px) {
.primary-menu {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
-ms-flex-positive: 0;
flex-grow: 0;
}........- i change function.js (row #624)
$('#primary-menu-trigger').off( 'click' ).on( 'click', function() {
if( $body.hasClass('device-xl') || $body.hasClass('device-lg') || $body.hasClass('device-md') || $body.hasClass('device-sm') || $body.hasClass('device-xs') ) {.................
now it works, but the style is a little different than dafault's padding and submenus are open for default
Is there a more comfortable and elegant way to always use the mobile menu?
