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: align li(s) to right in horizontal menu

Home Forums Older releases 0.9.x align li(s) to right in horizontal menu Re: align li(s) to right in horizontal menu

#1773
admin
Keymaster

Hi, yes, you can use the CSS code sample I’ve posted in the following topic:

http://www.smartmenus.org/forums/topic/smartmenu-dropdown-doesnt-work-if-main-menu-is-display-inline

It will make the items center aligned. To align them to the right, just change the following rule:

#main-menu {
	text-align:center;
}

to:

#main-menu {
	text-align:right;
}