I’d like to make the sub menu items closer to the top items (in the suckerfish menu)
There is a small ‘dead spot’ between the top-level items and the sub items where the sub menu disappears
Which css variable is it that affects the placement of the sub items in the suckerfish menu?
I tried changing the z-index /ja_cssmenu/ja-sosdmenu.css to 79 and then to 129 (then Shift/refresh) to see what happened, but the suckerfish sub items didn’t change position
#ja-cssmenu li ul {
width: 15.4em;
position: absolute; /* second-level lists */
z-index: 99;
left: -999em; /* using left instead of display to hide menus because display: none isn’t read by screen readers */
height: auto;
width: 14.9em;
}
How can I move the sub menu items a little closer to the top-level suckerfish menu items?
Many thanks 🙂