Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Reply To: Remove level 2 menus

Home Forums Older releases 1.0.x Remove level 2 menus Reply To: Remove level 2 menus

#3200
admin
Keymaster

For example, you could add a class to the parent LI element:

<li class="hidden-sub-mobile">...

and use the following CSS:

@media (max-width: 768px) {
	.hidden-sub-mobile .sub-arrow, .hidden-sub-mobile ul {
		display: none !important;
	}
}