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;}
}