Forums

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

Home Forums CSS Why is my site not displaying right in Firefox and IE Re: Why is my site not displaying right in Firefox and IE

#119214
bkbillma
Member

you have this on your canvas #canvas
background: url(images/michael.png) no-repeat transparent;
background-position-x: right 10px;
background-position-x: 453px;

instead try
background: url(images/michael.png) no-repeat right transparent;

i am guessing the multiple background-position-x plus the fact that one has 2 values in it would be your problem. Chrome is letting messy code slide where FF and IE are saying “you’re doing it wrong”