So I have the following CSS in place to display a horizontal navigation bar using:
.navigation ul { list-style: none; padding: 0; margin: 0; } .naviga
Well, to use margin:0 auto on something, it must have a defined width. Probably the best workaround is:
margin:0 auto
ul li { display: inline; list-style-type: none; } ul { text-align:center; }