On Tue, Mar 6, 2012 at 10:08 AM, <[email protected]> wrote: > Was wondering if anyone could help me figure out why my sub menu has a > delay when hovering from the original menu. Sometimes it works but most > times it takes about 3-5 hovers before sub menu stays visible. Link is > here: http://www.fnfsportsfishing.com. By the way, I created it using a > css3 generator that I purchased and the support there is not very good > which is why I thought I'd try here.
I think it's because of the positioning of your submenu. ul#navmenu ul has a top:103% and I think that extra 3% creates a little gap between the menu title and the menu contents. When the mouse cursor is over the gap, the :hover on ul#navmenu li is no longer there and the submenu disappears. _If_ I'm right, you should be able to fix the problem by changing that 103% to 100%. -- Vince Aggrippino Ghodmode Development http://www.ghodmode.com ______________________________________________________________________ css-discuss [[email protected]] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
