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: Alignment of sub-menu with main menu and sub-menu line height

Home Forums Older releases 0.9.x Alignment of sub-menu with main menu and sub-menu line height Re: Alignment of sub-menu with main menu and sub-menu line height

#1811
NeilW
Participant

Fantastic!!! 😀

Thanks very kindly, works great for the desktop menu, but on mobiles it aligns the sub menus to the right.

In this case, I need the menu button still on the right, but the menu list still left aligned.

I think I have fixed it though at my mobile break-point with the following code:

@media screen and  (max-width: 979px) {
/* Fix to left align menus again on small screens */
	#main-menu {
		float: left !important;
	}

Hopefully, it proves OK.