UPDATE: 26th April 2009
Centering the Menu so that it appears central
There has been much debate about trying to centralise the menu tabs, I didn't want to edit the code too much as this would make a mess of it in different browsers, However i've found that there is a way
The easiest way to center menu content is to place it inside of a center aligned table, as shown below:
Code:
<table cellpadding=0 cellspacing=0 align="center"><tr><td>
----[ your menu structure]----
</td></tr></table>
This way the menu tabs will appear central in all browsers.
Hope this helps :up: