• How to make the main menu in twenty ten theme centered align horizontally
    which is in unordered list format means “LI”

Viewing 2 replies - 1 through 2 (of 2 total)
  • since the parent div container of the main menu(div .menu) of Twenty Ten has a fix width of 928px. Try giving the UL under it a min-width to make it shorter and centered it with margin-left:auto; and margin-right:auto;

    div.menu{} //dont change this anymore
    div.menu ul{
    min-width: 40%;  //will get the 40% of 928px of parent element and grows according to child LIs total width
    margin-left: auto;
    margin-right:auto;
    }

    didn’t tested it but it should work according to your scenario ??

    Dear All,
    I would like to ask you a question from Turkey ??
    Im very new at wordpress and I would like to center my main nav however I couldnt manage to do. my web site is https://www.kermitim.com and Im waiting your support.
    Thank you and best regards
    elcin

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to align center main navigation menu’ is closed to new replies.