If I type in the following script to remove the white backgrounds from pngs in ie 6 the script does the desired job.
<!--[if lt IE 7]>
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<document.images.length; i++)
{
var img = document.images<i>
var imgName = img.src.toUpperCase()
if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
{
var imgID = (img.id) ? "id='" + img.id + "' " : ""
var imgClass = (img.className) ? "class='" + img.className + "' " : ""
var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' " var img + img.style.cssText if (img.align == "left") img + imgStyle if (img.align == "right") img + imgStyle if (img.parentElement.href) img + imgStyle
var strNewHTML = "<span></span>"
img.outerHTML = strNewHTML
i = i-1
}
}
}
}
window.attachEvent("onload", correctPNG);
<![endif]-->If I make a weblog like below and just copy in the script into the blog with no formating it outputs the same thing to my browser but it does not work. Any Ideas?
{exp:weblog:entries weblog="java_png" dynamic="off"}
{body_field}
{/exp:weblog:entries}