Reply To: How do I center the Entire Primary Navigation Menu?

Homepage Community Forums Optimal Theme Support How do I center the Entire Primary Navigation Menu? Reply To: How do I center the Entire Primary Navigation Menu?

#2964
Wes
Moderator

    I usually recommend everyone post a link to their site so I can tell them the exact line that they’ll need to make changes to. If you haven’t really made any changes to your css, then you should be able to do it by following these steps –

    First look for this in your css – #nav .wrap and add – text-align: center; which will look like this –

    #nav .wrap {
    margin: 0 auto;
    text-align: center;
    width: 960px;
    }

    Then look for – .menu li and change the float: left; to float: none; ….then add display: inline-block; which will look like this –

    .menu li {
    display: inline-block;
    float: none;
    list-style-type: none;
    }

    Let me know if that works