Hi, I'm doing a drop down menu in HTML/CSS the normal way; i.e., using ul li and nested uls for the drop-down menus.

I want to have the drop down menu slightly offset below the nav bar like it is here in Orman Clark's Studeo Theme. I can't work out how to do this and still keep the drop down menu visible when I move my cursor between the top link and the drop down menu.

Any help is greatly appreciated.

link|improve this question

62% accept rate
Don't know who commented before, but keep in mind that SO is a two-way street: people are far less likely to answer your questions if you don't accept answers more than 50% of the time. (Even then, I don't answer questions from people who have less than 85% accept rates.) – Edwin Nov 15 '11 at 22:23
We agree @Edwin, looks like user1345765412345 is actually a new user. And looks like the lesson was usefull. Thanks! – Roko C. Buljan Nov 15 '11 at 22:26
feedback

1 Answer

up vote 3 down vote accepted

.setTimeout() is the key you need!

(Try to hover on the 3rd li and reach the open menu by moving around the page! It will stay open, waiting for a predefined amount of time for you to mouse over. If it does not receive that input in that period, it will hide itself again.)

This could help:

DEMO

Answer found HERE

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.