Try just removing the two lines:
Code:
.chromestyle{
width: 99%;
font-weight: bold;
}
.chromestyle ul{
border: 1px solid #BBB;
width: 100%;
background: url(chromebg.gif) center center repeat-x; /*THEME CHANGE HERE*/
padding: 4px 0;
margin: 0;
text-align: center; /*set value to "left", "center", or "right"*/
}
from the default CSS file. The problem with specifying width: 100% is that it will in fact cause the menu to be longer than 100% after you factor in the menu borders. That's why it was initially set at 99%. You may have to do some tweaking apart from the above to get things right.
Bookmarks