//This document is a solution for people who have a uniform color background they wanted to “repeat”. //Repeating in any fashion is impossible. However, it is possible to ‘stretch’ the background over the whole area. //If you’re using a solid translucent color png background, you can stretch it across the whole area. //To do so, first do the standard css: #page {background-image: url(trans_white.png); background-repeat: repeat;} //Notice I added in the background-repeat. This is the variable that will indicate to the script to stretch it. //In your ie6.css file (ie6 exceptions file) enter: #page {behavior: url(js/iepngfix2.htc);} //Make sure this document is saved in your js folder. //Now, whenever a background has a background-repeat set to ‘repeat’, it’ll stretch the background image to encompass the whole area. //This can also be done to mimic repeat-x and repeat-y. You just need the div/td/whatever to ONLY encompass the area desired. //It only stretches, but it works and looks the same!