Making desktop navigation the same on all devices (so no mobile button)

Is it possible to have the same desktop nav menu for all screensizes.

So it would just be the text menu without going into a burger menu on smaller screen.

This is the site I am working on https://mjcarton.com/urbanforestcare and my client just wants a text menu not the burger menu from ipad down to mobile.

Thanks!

Hi,

To achieve that, you can add this in Theme Options > CSS

/* prevent menu to turn to mobile menu. */
@media (max-width: 979px) {
.x-nav-wrap.desktop {
    display: block !important;
}
.masthead-inline .x-btn-navbar {
    display: none  !important;
}
.x-nav-wrap.mobile {
    display:none  !important;
}
}

Hope that helps

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