I'm trying to centre the menu on my Wordpress site with CSS:
http://thewholesomebakery.co.uk/
I'm aware that I have to remove float:left
; but then solutions seem to vary from theme
to theme
.
Can anyone help me out with this?
I'm trying to centre the menu on my Wordpress site with CSS:
http://thewholesomebakery.co.uk/
I'm aware that I have to remove float:left
; but then solutions seem to vary from theme
to theme
.
Can anyone help me out with this?
You can remove the float and add margin: auto;
. The page of the w3c about centering things is an absolute must-read for any web developper.
Change your css to:
.site-bar .nav {
float: left;
width: 100%;
padding-top: 3px;
text-align: center;
}
.nav ul {
margin: 0;
padding: 0;
list-style: none;
display: inline-block;
}
that should center the top navigation!