• I’m testing the new Twenty Ten theme on WordPress 3.0.

    Is it possible to move the top menu from left to right mantaining the menu order?

Viewing 7 replies - 1 through 7 (of 7 total)
  • #access .menu-header li,
    div.menu li {
    	float:left;
    	position: relative;
    }

    in style.css, just change the float from left to right

    That seems to change the menu order. Home, About, Contact do align right but switch to Contact, About, Home.

    Thread Starter ShMk

    (@shmk)

    True, that change the position but inverts the order.

    I’m looking for a solution that move the menu on the right but keep the menu order as it was before.

    Use the WP 3 custom menu feature, and manually reverse the order.

    .menu ul { float:right; padding-right:20px;}

    Thank you, alchymyth …

    Thread Starter ShMk

    (@shmk)

    Thanks alchymyth for the tip.

    I’ve tried to insert it in:
    “#access .menu-header ul, div.menu ul”
    but the
    “padding-right: 20px;”
    broke my sub-menus.

    So I’ve substituted it with:
    “margin: 0 20px 0 0;”
    and made it work (tested on Firefox, IE8, IE7 and Safari)

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Twenty Ten menu on right’ is closed to new replies.