O, I thought you meant the columns in the dropdowns.
Well, your first two links have margins but the other don't, because of this:
Code:
#menu2 .menu_right {
float: left;
margin-right: 0;
}
So remove that zero margin and change this margin so that all of the items can fit on the line:
Code:
#menu2 li {
border: medium none;
display: block;
float: left;
margin-right: 30px;
margin-top: 7px;
padding: 4px 10px;
position: relative;
text-align: center;
}
Perhaps for better results, give the LIs all the same width.
Bookmarks