Forums

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

Home Forums CSS Help with some css problems and browser support!!!!

  • This topic is empty.
Viewing 15 posts - 16 through 30 (of 30 total)
  • Author
    Posts
  • #127200
    Paulie_D
    Member

    >its working perfect in IE9 for me.

    Interesting…it doesn’t in my IE10 but switching to IE9 standards they stack up…hmmmm

    #127198
    chanman
    Member

    So why did it just all of a sudden start working? Was it because I added the modernizr? @paulie_d

    #127201
    chanman
    Member

    Tthats weird?

    #127202
    chanman
    Member

    stacking up is fine with me.

    #127203
    chanman
    Member

    I don’t have IE10 yet what does it do in that? @paulie_d

    #127204
    Paulie_D
    Member

    It probably doesn’t matter but you should load your CSS sheets in a different order.

    I would do something like

    normalize.css

    demo.css

    style.css

    in that order.

    #127205
    Paulie_D
    Member

    IE10

    #127207
    chanman
    Member

    I’m going to try and put all the css in one file when I get done and IE10 is weird I wonder if I updated the modernizr file because the download came out before IE10. Do you think that might work? @paulie_d

    #127209
    Paulie_D
    Member

    OK….I **think** it’s down to backface-visibility not being supported in IE without a pre-fix

    You have

    .rm-container .rm-front, .rm-container .rm-back {
    backface-visibility:hidden;
    }

    I think you might need to add

    -ms-backface-visibility:hidden;

    Worth a try

    You might want to search for other instances as well.

    #127166
    chanman
    Member

    Thanks I check it out.

    #127232
    chanman
    Member

    Here is a link to the style sheet controlling the menu [style.css](http://http://www.biggunsbarbq.com/css/style.css “”) as you can see this
    -ms-backface-visibility:hidden;
    is already in the css
    “`
    .rm-container .rm-front,
    .rm-container .rm-back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    }
    “`

    @paulie_d

    #127235
    Paulie_D
    Member

    Then I don’t know…

    #127294
    Paulie_D
    Member

    IE10 is now stacking as per IE9.

    #127311
    chanman
    Member

    The only reason it is stacking is because I took the media query that put them stacking at 960px and changed it to 2000px until I can figure out what to do with it the folding problem. @paulie_d

    #127312
    Paulie_D
    Member

    Then that sounds like a media query issue rather than anything else.

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