I have site (in my signature) and when viewed from my computer at home the background is completely white, but it isn't from other computers, what color is it for you and does anyone know how to take a look at my .css file and fix it to always be a certain color for everyone (white preferably). Derek
Replace this.... body { background: #EEE url(img/bg.gif); color: #444; font: normal 62.5% "Lucida Sans Unicode",sans-serif; margin: 0; } With this.... body { background-color: #FFFFFF; font-color: #444444; font: normal 62.5% "Lucida Sans Unicode",sans-serif; margin: 0; }
All white now, #eee is actually off-white and if your monitor isn't calibrated perfect it might look white, #FFF is pure white.