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: Justified main menu items - V.6.0.4

Home Forums Older releases 0.9.x Justified main menu items - V.6.0.4 Re: Justified main menu items - V.6.0.4

#1476
admin
Keymaster

Thanks, that helped a lot!

OK, in your case some of the declarations did not take effect so please just use this code instead in your “common_style.css”:

#Menu1 {
	display:table;
	border-spacing:0; /* removes completely the item spacing */
}
#Menu1 > li {
	display:table-cell;
	float:none !important;
	width:1% !important;
}
#Menu1 > li > a {
	padding-right:0 !important;
	text-align:center;
}

Additionally in “c_config.js” set these to 0 in your main menu style array to remove the item separators spacing:

0,		// ItemsSeparatorSize
...
0,		// ItemsSeparatorSpacing

Please let me know if you still have any troubles.

Cheers!