I have a site with a lot of bg png images. css like this:
div#carousel ul#slides li.monitor{
background:url(../images/monitor.png) no-repeat center top;
position:relative;
}
and I have jquery and pngfix included as such:
<script language="javascript">
google.load("jquery", "1.6.2");
</script>
<script src="/javascripts/jquery.pngFix.pack.js"></script>
and
$(document).ready(function() {
$(document).pngFix();
...
})
yet still my pngs do not show up in IE7, IE8, etc. Ideas?