Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
I can’t seem to succeed to tighten up the menu horizontally, as well as change the order..nothing seems to work
modify my question:
i made a new menu, that at least gave me control over the order:
my current css is mix of various css codes I’ve picked up from the forum and they may very well contradict one another:
what i need:
right aligned (exists)
reduce the spacing between the menu items the code i found in the forum doesn’t work
Sure. Let’s try:
Right align menu:
/* Vantage right align the main menu */ .main-navigation ul { font-size: 0; text-align: right; } .main-navigation ul li { display: inline-block; float: none; font-size: 13px; } .main-navigation ul ul li { text-align: left; }Adjust menu spacing – horizontal:
/* Menu Padding Horizontal */ .main-navigation ul li a { padding-right: 25px; padding-left: 25px; }