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: Centering Menu Items

Home Forums Older releases 0.9.x Centering Menu Items Re: Centering Menu Items

#1556
admin
Keymaster

Hmm, yes I have obviously forgotten to test it on mobile.

Anyway, just use the following additionally and it will fix it:

@media screen and (max-width: 640px) {
	#main-menu {
		text-align:left;
	}
	#main-menu > li {
		display:block;
		margin-right:0;
	}
}

Cheers!