MultiformeIngegno
Member
Posted 7 months ago #
Hello, as the title says I have a TwentyEleven child theme and the problem is that with Internet Explorer 7 on Vista (at least my users are reporting issues with this combination) the menu overlaps the content of posts/pages.
Here's a screenshot:
http://img196.imageshack.us/img196/9882/problemaalsito.jpg
And this is the url if you need to check css:
liceoclassicovirgilio DOT it
I tried adding z-index:1000 to #access but doesn't seem to work. Can you help me? :)
i_g_wright
Member
Posted 7 months ago #
Hi MultiformeIngegno,
As well as changing the z-index the property #access needs to be 'positioned' in some way. This maybe why your z-index didn't work.
Try adding:
position: relative;
z-index: 1000;
Just to note:
These is also some funky z-indexing issues with IE, you need to make sure the parent has a higher index for the child elements to work too.
Hope that helps,
i_g_wright
Member
Posted 7 months ago #
Hello,
After you have tested the above you can also try adding adding a z-index value to #access li.
Thank you,
MultiformeIngegno
Member
Posted 7 months ago #
Genius! It worked (#access)! Maybe this is useful for the WP Team.. I made only little edits on my child theme.. so perhaps it happens also on TwentyEleven "parent"..
Anyway, thank you!! ;)