In 3.32 I needed to change the page menu to right align and did this by editing Style.css, section:
/* ------------------------------------------------------------------
---------- EXTENDED MENU MECHANICS ----------------------------------
------------------------------------------------------------------ */
/* These rules exist only for specific menu types, such as horizontal
or vertical menus, right or left aligned menus. */
ul.rMenu-hor li
{
float: left;
width: auto;
}
to:
ul.rMenu-hor li
{
float: right;
width: auto;
}
This also flipped the menu order from left to right. To solve this I changed the page order numbers to get them back into my original order.
This may have not been the correct way to do this, but it worked for me. I had no need to try 'center' but perhaps it would work for those who want it.
A word of advise - Before you edit any file make a backup of it first! Failing that, copy and paste the lines you are about to edit into Notepad, so if all hell breaks loose after you've saved your edit you can overwrite your edited lines with the original ones re-pasted back from Notepad.
Last edited by bpbaker; May 29, 2009 at 05:19 PM.
Reason: Corrected the version number.
|