You can use the adjacent selector to change the position on the right dropdowns, like this:
Code:
#dropMenu ul.level2 {
background-color: #B366B3;
background-image: url("../images/l2top.png");
background-position: center top;
background-repeat: repeat-x;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
left: inherit;
padding-left: 10px;
padding-right: 10px;
padding-top: 20px;
position: absolute;
right: inherit;
top: 22px;
z-index: 1000;
}
#dropMenu li+li+li+li ul.level2 {
left: -37.5em;
}
This makes the fourth and following items drop 37.5em to the left of normal.
Bookmarks