Topic: PNG IE Transparency Issue (Page 1 of 1) |
|
---|---|
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 04-27-2006 21:15
I have gotten reports that a PNG image that is being used on a clients website is showing up with a black background instead of alpha transparency on IE6. |
Paranoid (IV) Inmate From: Cold Sweden |
posted 04-27-2006 22:21
Never heard of it. Can you post the URI? |
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 04-28-2006 02:19
It is not on the web at this point. I will look at putting up a test case using the same images. |
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 04-28-2006 13:05
I have created a simple test case which is now being reported to be partially black and partially clear. I am going to see what is actually happenning and will get a screen shot and post the test case at some point today. |
Bipolar (III) Inmate From: Therapy Department 117 :Skining and Mods |
posted 04-28-2006 13:15
There is a Reason I asked "will IE 7 See .PNG" in the Internet Explorer 7 - what do you think? Thread |
Bipolar (III) Inmate From: next to the tree |
posted 04-28-2006 18:20
I also just recently heard about .png not showing up in IE as well. I really curious to find out if and why. |
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 04-28-2006 21:14
I went to the user and checked and the transparency was actually working correctly. |
Obsessive-Compulsive (I) Inmate From: Edmonton |
posted 05-18-2006 04:02
Hi Warmage, I don't know if your are styling with css at the same time, but if it is the case, you have to specify backgroung-image: none for ie, if not it will render something like half the transparency. code: /* Use the Tan hack so only IE wont have the background image. The Tan hack isn't working for IE7 */ /* The space after the "*" is important */ * html #yourSelector{ background-image: none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='myimage.png',sizingMethod='scale');
|