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
December 28, 2012 at 1:21 pm
#119214
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”