On Safari 3.1.2 on Mac OS X 10.5.6.
The drop down menu disappears when attempting to scroll the mouse to
an item in the list.
The issue can be resolved by replacing the top value in the following
id Selector in the file nav-horizontal.css
ul#primary-nav ul {
position: absolute;
display: none;
left: 0px; /* Set 1px less than menu width */
top: 22px;
}
changing the top calue to 21px; resolves the issue
like this:
ul#primary-nav ul {
position: absolute;
display: none;
left: 0px; /* Set 1px less than menu width */
top: 21px;
}
This prevents the cursor location from leaving the menu region which
causes the drop down to disappear.
I requested Observer access on the project , to submit the issue in
the proper way, but wanted to get this down before I spaced it. Not
really a support request as I've already fixed the issue in my
environment.
(Happy to be developer member too, but I wasn't sure of the process
there.)
Thanks,
Ben Bruckhart
(bingosabi on dev.java.net.)
---------------------------------------------------------------------
To unsubscribe, e-mail:
[hidden email]
For additional commands, e-mail:
[hidden email]