Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS body background not working in IE6 Re: body background not working in IE6

#50570
pab
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.