Hello,

I am using a .png-image in my theme, but older IE versions, aren't able to translate this image right. I've tried to integrate a ie-bug-fix, but I have to set the width and height attribute, which isn't possible as I have integrated the picture as background-image ...

do you know how to set this attributes, or how I am able to integrate this picture as "normal" image?

thanks,

Dani

Comments

nitin_singh’s picture

I have also same problem but i have fixed this using

#element
{
background-image: url(image.png);
}

* html #element
{
background-image: none;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="shadow_top_left.png", sizingMethod="crop");
}

tonks1501’s picture

thanks,
it's working now

greets dani