Home › Forums › CSS › body background not working in IE6 › Re: body background not working in IE6
October 14, 2008 at 8:23 pm
#50570
Member
try replacing background with background-image since yu are calling the rest of it like that,
background:url(images/bgtile.jpg);
background-color:#000;
background-repeat:repeat-x;
color:#666;
font-family:Helvetica, Verdana, Arial, sans-serif;
or do
background:url(images/bgtile.jpg) repeat-x #000;
let me know if that fixes it. sometimes ie needs to have everything declared separately same for font declaration.
Hope it helps you out.