Hi, in my previous message I had a problem to change the background image in the header part, I do that by modifying the value of the opacity to 0 in following code, but this only works for the fixed menu type, if I changed to nonfixed style, the header part just turns into black even if I change the opacity value to 0.
would appreciate it if you can help out, thanks in advance!
.header_bg{
position: absolute;
top:0;
left:0;
width:100%;
height:100%;
opacity:0;
filter:alpha(opacity=0); /* For IE8 and earlier */
z-index: 0;
}
.nonfixed_header .header_bg { opacity: 0; filter: alpha(opacity=0); }
Another question I have is: the logo image (the default one) doesn’t resize in IE8 with XP, pls. check.
Hi hsie,
Can we take a look at your site with the css live. That way we can see exactly how you have it in place and what the interaction is.
Regards,
Devin
Hi, pls. find the fact that the logo image can’t be resized under IE8 with xp, your own demo page also shows the same problem.
Hi, any update on this? thanks!
Hi,
I dont have an IE8, and my emulators don’t display this issue. Looking at the code affecting the logo http://i.imgur.com/LpXtWn6.png , a possible cause may be the max-width:100%; from the img definition earlier in the cascade.
Try something like this in your /css/custom.css OR in Quick CSS located in Enfold > Theme Options > Styling … text area on bottom of that page
#top .logo img {
max-width: none !important;
}
Adding the code doesn’t affect IE10, Chrome or FF
Thanks,
Nick