• Is it possible to hide submenu-items on the mobile menu, so users can choose which submenu to expand? I read somewhere to add the following css to the style, but that will set the max height to the initial visible items.

    @media only screen and (max-width: 719px) {
    	.nav ul {
    		display: none !important;
    	}
    
    	.nav li:hover ul {
    		display: block !important;
    	}

    http://www.odomaasland.nl/wp/

The topic ‘[Hueman] Hide submenu-items on mobile’ is closed to new replies.