Mobile menu: setting manually the enabling or not

hi: just wonder how to set manually the transitions between standtard menu or mobile menu.

see here:

is there a way to put mobile menu enabling on a lower resolutions (eg: 800px)

tnks

Hey Mauro,

Please add this code in X > Theme Options > CSS:

@media (min-width: 801px) {

    .x-nav-wrap.desktop {
       display: block !important;

    }

    .masthead-stacked .x-btn-navbar {
       display: none !important;
    }


}

Here are some related links for further reading:

Hope this helps.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.