By default the mobile menu displays all menu items as desktop menu. Sometimes, you may want the mobile menu to display only root menu items. It will require a small code change, here are all of the necessary steps:
- Admin Panel -> Left Menu -> Appearance -> Theme Editor
- Open style.css
- Under
/* Medium Resolution */
@media screen and (max-width: 799px) { Insert the following code:#navmain ul ul {
display: none !important;
} - Save changes