CSS Centering Problemo

Soldato
Joined
17 Oct 2002
Posts
2,956
Location
Cold Scotland :(
:confused:

Decided to renew my face on the Internet but have come across a small problem that I can't seem to figure oot.

http://www.fwibble.org/test.html

The menu bar is centered in IE6Win but in FireFox its not.

The CSS is included inside the HTML document for now, will be moved into its own file once i've finished up the design.

Any clues as to why are appreciated :)
 
You're centering the li's not the actual ul itself - try this:

Code:
ul#navmenu {
	margin-left:20px;
	width:380px;
	text-align:center;
	margin: 0 auto;
}
ul#navmenu li {
	float:left;

}
You also need that 0/auto I added, too :)
 
Ah, spot on Beansprout, did not notice that. Strange how you can miss things in your own code, yet spot them fine in someone else's!

Thanks :D
 
Back
Top Bottom