Display WordPress Nav Menu (and Hide mobile menu)

Опубликовано: 02 Ноябрь 2024
на канале: Greg Narayan
18,785
97

How to show the normal wide wordpress nav menu and hide the mobile menu on any screen size you want. Example uses Laurel theme (get Laural https://goo.gl/l6z6AL)

The CSS we use is
@media only screen and (min-width: 720px) and (max-width: 2000px) {
#slick-mobile-menu {display:none;}
#nav-wrapper {display:block;}
}