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.

Re: Is there anyway to control the height of the dropdown?

Home Forums Older releases 0.9.x Is there anyway to control the height of the dropdown? Re: Is there anyway to control the height of the dropdown?

#1729
admin
Keymaster

Hi, sorry for the delay! I was on a vacation.

If the long sub menus don’t have any further sub menus, you could apply custom max-height via some additional CSS. For example, add the “scrolling-sub” class to the UL element of any long sub menu and then use the following additional CSS:

ul.scrolling-sub {
	max-height:500px;
	overflow-y:auto;
}

Cheers!