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?
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?
#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.
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 ...
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)
This topic has been closed to new replies.