views:

26

answers:

1

Hi all,

i have a Problem with my Wordpress Design, specialy with Dropdownmenu.

http://fincha.com/wordpress/

Check this, in the main menu "Versicherungen" you will see, i tryed allready all combinations with z-index... without results. :(

if some one have a nice idea for this menu, just tell :)

thx

+1  A: 

I don't understand the reason for this myself (though I didn't research it; maybe a more experienced user can tell me), but z-index properties are only respected when the element is not positioned statically. Your problem is fixed by adding

#mainmenu {
    position: relative;
}

so by including position: relative; for #mainmenu (your declaration starts on line 46 of style.css).

MvanGeest
thanks a lot!!!
Fincha