From: Carol Swinehart <[EMAIL PROTECTED]>

>http://www.spacetransitions.com/

>I changed the z-index as an inline element, nothing seems to work to 
>keep the lines from showing up in the pull out in addition to some text.

As pointed out by another poster, remove the HTML from your style sheet 
including the style elements. Style sheets should not have those. Remove all 
references to z-index in your style sheet and remove inline z-index styling 
from your HTML as well. Add the following to your style sheet.

.level1 {z-index: 2;}
.level2 {z-index: 1;}

This is all that is needed

Something that comes later in the HTML (.level2) will automatically have a 
higher intrinsic z-index than something that comes earlier (.level1). Your 
submenus are dependent on their parent's z-index, regardless of how high you 
make the submenu's z-index. Since the z-indexes of the parents are the same, 
you get the behavior you are seeing, since source order will then come in to 
play. 

You must override the natural (HTML source) order to get nested elements (your 
submenus) to show over the following parent elements.

~holly 
 
                   
______________________________________________________________________
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