Reputation: 27
My drop down menu (http://tornaia.com) shows up behind the logo in ie 7 and ie 8 (not in firefox, ie 9 or chrome).
Screen shot in ie7: (http://tornaia.com/wp-content/uploads/2013/07/Logo_menu_ie.jpg)
Screen shot in firefox, what it should look like: (http://tornaia.com/wp-content/uploads/2013/07/Logo_menu_firefox.jpg)
I have read that this could be caused by z-values, but I'm not quite sure how or where to change them. My best guesses would be in the headere.php
: (http://pastebin.com/rTxzSNFx) or methods.php
: (http://pastebin.com/tpD6MFuM).
Anyone who can help me? Thank you!
Upvotes: 0
Views: 70
Reputation: 2287
Give your logo a z-index of less than what your UL has which looked like 99 I believe. Here is what you currently have
.logo-image {
position: relative;
}
try
.logo-image {
position: relative;
z-index: -1;
}
the file you need to reference for editing can be found here http://tornaia.com/wp-content/themes/rumput-hijau/style.css
Upvotes: 1