List looks fine in terms of spacing nevertheless;
Code:
edit the red text; change it to 8em or something
#nav li { /* all list items */
float: right;
width: 10em; /* width needed or else Opera goes nuts */
as for spacing out second level items (I'm assuming spacing in terms of height)
Code:
#nav li ul { /* second-level lists */
position: absolute;
background: black;
width: 10em;
left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
add replacing ** with a value of your choice, try maybe 3px..
|