Thank you, that worked!

Most Sincerely,
Rebecca Richter, Owner
Green Valley Designs
(406)546-9658
[EMAIL PROTECTED]
www.greenvalleydesigns.com 


-----Original Message-----
From: Gunlaug Sørtun [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 27, 2008 7:39 PM
To: Rebecca Richter
Cc: css-d@lists.css-discuss.org
Subject: Re: [css-d] dropdowns appearing behind content


Rebecca Richter wrote:

> I'm wondering why my css dropdown menus are appearing behind the
> white content area at http://www.blackfootchallenge.org/3col.html. 
> Anyone know?

It is normal that the last element gets stacked visually in front when
elements occupy the same area and no stacking-control is introduced.

Add...

.nav {
position: relative;
z-index: 1;
}

...to stack the entire navigation in front of other elements. Works in all
browsers - including IE/win.


Note that IE/win simply cannot properly stack absolute positioned elements
relative to non-absolute positioned elements or elements with another
parent, so not even a trillion in z-index on the absolute positioned
drop-down itself will make any impression on IE/win.

regards
        Georg
-- 
http://www.gunlaug.no

______________________________________________________________________
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/

Reply via email to