austenpayan / skippr

A super simple slideshow plugin for jQuery.
670 stars 133 forks source link

Horizontal scrollbars in IE? #6

Closed piccante closed 10 years ago

piccante commented 10 years ago

Very nice plugin. Seems to have horizontal scrollbars appearing in Internet Explorer, versions 8 thru 10. Any idea how to get around this? Keep up the good work!

austenpayan commented 10 years ago

I'll check it out, thanks for bringing it to my attention.

austenpayan commented 10 years ago

I have found that adding

html {
    overflow-x:hidden;
}

solves the problem in IE9 and 10.

austenpayan commented 10 years ago

Let me know if that works for your situation.

piccante commented 10 years ago

Thanks Austen, that seems to have done the trick. I tried applying overflow:hidden to the hero class but that didn't work - applying it to html has worked, great stuff.

austenpayan commented 10 years ago

Awesome!