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

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #41624
    djrolstad
    Participant
    #119128
    Andy Howells
    Participant

    I think it’s a bit of a mess code wise, I don’t think you’re clearing your floats properly. Read this article by @chriscoyierhttps://css-tricks.com/all-about-floats/

    #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”

    #119215
    bkbillma
    Member

    oh ha. My bad for some reason I completely ignored the big black box with the answer in it. But yeah jkinney768 has it.

    #119239
    djrolstad
    Participant

    Thanks guys!! Didn’t even notice that I had multiple background-positions

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘CSS’ is closed to new topics and replies.