png images not transparent in IE6

I use a solution to the png issue for IE 6 - copy the text below, save as a pngfix.js file, and include it as a META tag in your course () AND include the file as an additional file when you publish.Very slick solution - hats off to this guy....


/* Correctly handle PNG transparency in Win IE 5.5 & 6.http://homepage.ntlworld.com/bobosola. Updated 18-Jan-2006.Use in with DEFER keyword wrapped in conditional comments:*/function correctPNG() // correctly handle PNG transparency in Win IE 5.5 & 6.{ var arVersion = navigator.appVersion.split("MSIE") var version = parseFloat(arVersion[1]) if ((version >= 5.5) && (document.body.filters)) { for(var i=0; i" img.outerHTML = strNewHTML i = i-1 } } } }window.attachEvent("onload", correctPNG);Edited By: Lex_Tensions on 2007-10-24 12:36:19

Discussions have been disabled for this post