How can I center the menu on my WordPress site?

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.

Read More

Can someone please help me?

Thanks a lot!

Related posts

Leave a Reply

4 comments

  1. Give #top-menu an explicit width width: 450px and margin: 23px auto 0 auto;

    Get rid of the float: left.

    Alternatively, make the li elements inline blocks display: inline-block and use text-align: center on their parent.