As armchair designers we sometimes want to personalize our theme to fit our taste.
One of the simple changes that provides a different look is to have the Top Navigation float right instead of left.
This requires a simple addition to the style .css file.
#access .menu-header ul, div.menu ul {
float:right;
padding-right:10px;
list-style:none outside none;
margin:0;
}
The only two lines added here are in bold.
The padding-right is to provide some space at the right edge of the menu. If you have the menu background set to no color then you probably won’t need the padding right.
Post Tags: Twenty Ten CSS Tweaks , Twenty Ten Navigation Right










