I ran into this issue last night where the menues would hide behind the left side blocks, couldn't find answer from this theme creator so i found one that works, just posting for others that might need a bit of help

You can try setting the z-index on the UL or even the LI, I know it can be bugbear to work out these little bugs for IE6 drop menus (FF2 has some quirky z-index issues as well, to be fair they are quite rare though).

Dont set any other z-index, for example just try a z-index of 2 on...

#primary-links, #primary-links ul {
padding: 0;
margin: 0;
line-height: 30px;
list-style: none;
z-index: 2;

Everything is normally z-index: 0; so either 1 or 2 "should" pop it forward. If you set multiple z-indexes it can potentially make things a bit screwy in IE6 (nesting positioned elements and z-indexing them all can cause quirky results).

Comments

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.