In carousel2.css get rid of this:
Code:
body { }
img, div {/* For IE 5-7 */
behavior: url(iepngfix.php)
}
Contrary to the comment, it's only of any use for IE 5.5 through IE 6. So it could be placed on the page (not in a css file) like so:
Code:
<!--[if lt IE 7]>
<style type="text/css">
img, div {/* For IE 5.5-6 */
behavior: url(iepngfix.php)
}
</style>
<![endif]-->
That way it would only be used by IE 6 or less. But it will probably still mess up the crawler in those browsers (IE less than 7). There are many of these png fix schemes though, perhaps a different one would be better (it shouldn't be touching the crawler anyway). Or it can be made more specific via its selectors. It could then exclude the crawler (which uses no .png images) that might make even those earlier IE versions work OK with crawler and iepngfix.
But you are only using a few .png images, and only as background images (at least as far as I can tell) and some of those might not actually be being used on this page. So for this page at least it would probably be fine to just do without iepngfix.
Bookmarks