1

in IE jQuery Cycle Plugin sets the background to white... even i have the CSS transparent for everything

Moon
  • 19,518
  • 56
  • 138
  • 200

2 Answers2

15

This is the correct answer to the original question:

Add this param to your jQuery: cleartypeNoBg:true

so it should look like this:

$(document).ready(function() {
    $('#your_div_id').cycle({       
        fx: 'fade',
        cleartypeNoBg:true
    });
});

-W

Angelo Silva
  • 246
  • 4
  • 12
WGoodman
  • 166
  • 4
0

If your css has rgba values and still it is not being displayed then you should try add this to your ie.css file for that particular div

Transparent background for IE hack :

background: transparent; 
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#808ED557,endColorstr=#808ED557);