I recently had a similar problem, that the transparent png doesn't really get transparent when layered on top of background, it shows as solid background color instead
I fixed it with something like this, and it works $(document).ready( function() { var bgobj = document.getElementById("body_pngfix"); var bgsrc = bgobj.currentStyle.backgroundImage; bgobj.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/ body.png', sizingMethod='scale')"; bgobj.style.backgroundImage = "url(images/blank.gif)"; }); not sure you are having the exact same problem, hope this can help On May 28, 7:02 am, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > Does anyone know of a way to make IE6 tile background PNGs with > transparency? > > Glen