Get rid of this (around line #154):
Code:
<script defer type="text/javascript" src="/templates/mijntemplate/js/pngfix.js"></script>
From IE 7 on, png no longer needs to be fixed. Alternatively, if you still want the page to look good in IE 6, you could convert:
plandesarcades_2011.png
to a .gif or .jpg image. You probably should anyway, it would require far fewer bytes. But you should then make the above script call like so:
Code:
<!--[if lt IE 7]>
<script defer type="text/javascript" src="/templates/mijntemplate/js/pngfix.js"></script>
<![endif]-->
There could still be other problems with that approach. But removing:
Code:
<script defer type="text/javascript" src="/templates/mijntemplate/js/pngfix.js"></script>
altogether will be good for IE 7+, IE6 should be OK, with perhaps some rendering issues on some of your png images.
IE 6 usage is fading though and fading fast. It's already into the single digits as a percent of browsers used to view web pages. It's probably even below 5% by now.
Added Later:
I just tested in IE 6, and there are other problems, even as the live page is currently setup. The image map lays out way down the page. There could be other issues in IE 6.
So I'd either skip IE 6 and that pngfix script, or fix the layout in IE 6 before worrying about using the pngfix script.
Bookmarks