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: Submenu formatting

Home Forums Older releases 1.0.x Submenu formatting Reply To: Submenu formatting

#2661
admin
Keymaster

For keeping deeper sub levels expanded all the time on desktop, you could use something like this as a start:

@media (min-width: 1001px) {
	.yourMenuClass ul ul {
		display: block !important;
		position: static !important;
		margin: 0 !important;
		/* the following are needed if you use the default fadeOut animation on close */
		-moz-opacity: 1 !important;
		-webkit-opacity: 1 !important;
		opacity: 1 !important;
		filter: alpha(opacity=100) !important;
	}
}

From here, of course, you will probably need to tweak the styling too.

Let me know if you have any troubles.