Re: [css-d] CSS Drop-down Menus

2008-04-01 Thread Bill Brown
Sorry, Didn't highlight the entire section. Try this: /*Makes the submenus appear on hover*/ .left_main_menu li{position:relative;} .left_main_menu li:hover ul{ display: block;top:0; } .left_main_menu li ul li{white-space:nowrap;} Rachel Vidrine wrote: > I am trying to create a CSS drop-down menu.

Re: [css-d] CSS Drop-down Menus

2008-04-01 Thread Bill Brown
Hi Rachel, Try this in your CSS: /*Makes the submenus appear on hover*/ .left_main_menu li{position:relative;} .left_main_menu li:hover ul{ display: block;top:0; } --Bill Rachel Vidrine wrote: > I am trying to create a CSS drop-down menu. I am having a couple of problems > with it. > > 1. In

[css-d] CSS Drop-down Menus

2008-04-01 Thread Rachel Vidrine
I am trying to create a CSS drop-down menu. I am having a couple of problems with it. 1. In Firefox, the drop-down menu links are too narrow in width. 2. When I hover over the main menu links (in both IE & Firefox), the drop-down menus appear, but then disappear when I move away from the main menu