0

I have tested my website on all browsers and it works fine: http://bgsorken.com/sandbox/index.php Besides Internet Explorer 8 (and probably earlier versions). It works fine on IE9. On the main page if you look at the "watch trailer" player image, it has an opacity animation on mouseover. Somehow on IE8 this looks like this:

https://i.stack.imgur.com/47R3k.png

and animates to pitch black.

I have literally grown a few grey hair today because of this and now relying on the community here to potentially guide me to a solution.

Alehandro Darie
  • 271
  • 1
  • 3
  • 7

1 Answers1

1

I found this thread on Google. http://www.sitepoint.com/forums/showthread.php?590295-jQuery-fadein-fadeout-of-transparent-png-in-IE7-and-Chrome

This is one of the solutions talked about there:

.item img {
background: transparent;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)"; /* IE8 */   
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);   /* IE6 & 7 */      
zoom: 1;

}

Some people are also reporting that Unit's PNG fixe solves the issue. http://labs.unitinteractive.com/unitpngfix.php

Filip
  • 2,514
  • 17
  • 28