On Mon, Jan 13, 2014 at 5:24 AM, Mike <[email protected]> wrote: > Good morning, > > I have a small problem with a site which I hope someone can assist. > > The site is www.deveron.org and the problem concerns the horizontal and > left-hand navigation lists. I have just separated some of the navigation > into the two menus from one horizontal one. Now the drop-down from the > horizontal menu falls behind the left-hand menu and is inaccessible. > > I am assuming this is a relatively minor problem concerning the stacking > contexts of the two lists and/or the z-index. The drop-down menu is using a > set of scripts from the Live Web Institute and there are some slightly > strange z-index values. > > Any help appreciated. I have tried looking using Firebug but so far can't > see what needs to be changed. > > regards, > Mike
It looks like you are trying to z-index the "ul.dropdown ul" higher to fix things. Instead, drop some "z-index: 600" on "div#menu". Better yet, you can just get rid of the z-indexing that you've done and you should be ok. If you just take that "597" index off of "ul.dropdown" entirely (which is applying to both topnav and lefnav subs) then you should be fine. Tim -- [email protected] ______________________________________________________________________ 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/
