Hello,
i read a lot online about the ie8 problems with z-indexing in combination with transparant post backgrounds.
I tried a lot but is there a clean working code for having background tranparancy of posts and menu with having the right z-index?
Meaning the menu's fall on top of the "post" backgrounds?
I got everything working in ff and chrome, but ie8 doesn't work.
i use this syntax for the menu:
'.homemenu { background: #000 url(images/menu/menushade-dark.png) repeat-x 0 bottom; color:#fff; opacity:.8;
filter:alpha(opacity=80); position: relative;
z-index: 9999;/* For IE8 and earlier */'
and this for the posts:
'.entry-wrapper {
background: purple; opacity:.8;
filter:alpha(opacity=80); position: relative;
z-index: 100; /* For IE8 and earlier */'
RESULT/:
IE8 doesn't show the submenus and no transparancy and no order, submenus on top.!!
Is there a simple solution?
Cee