I’m trying to get the menu on my WordPress site to align center.
I tried a bunch of things, including pulling out the float: left; CSS entry, but it won’t work.
Can someone please help me?
Thanks a lot!
I’m trying to get the menu on my WordPress site to align center.
I tried a bunch of things, including pulling out the float: left; CSS entry, but it won’t work.
Can someone please help me?
Thanks a lot!
You must be logged in to post a comment.
Remove
float: left;
style and add this style:Give
#top-menu
an explicit widthwidth: 450px
andmargin: 23px auto 0 auto
;Get rid of the
float: left
.Alternatively, make the
li
elements inline blocksdisplay: inline-block
and usetext-align: center
on their parent.How about margin-left: 30%;? Just adjust it to be exactly centered…