Log in

View Full Version : trying to center this css horizontal menu



ory
03-06-2009, 03:48 PM
Hi all,

I'm new here.

I'm trying to center this menu :

http://www.dynamicdrive.com/style/csslibrary/item/matt_black_tabs/

i simply want it to be in the center of the page and not using the padding-left to move it.

thanks!

Snookerman
03-06-2009, 03:51 PM
Give the list a width and change the margin to 0 auto:

.mattblacktabs ul {
-x-system-font:none;
font-family:Verdana;
font-size:12px;
font-size-adjust:none;
font-stretch:normal;
font-style:normal;
font-variant:normal;
font-weight:bold;
line-height:normal;
list-style-type:none;
margin: 0 auto;
padding:0 0 0 10px;
width: 400px;
}

Good luck!