Css – disable horizontal scroll on mobile web

cssmobile-website

I'm having an issue where horizontal scrolls appear on certain phones for my site.
I tried to put overflow-x: hidden but it's not working.
The width is auto, so that it will actually automatically resize the web to suits the screen size. All other phones are fine except when viewed in blackberry, nokia e52, and Windows mobile, the horizontal scroll will appear.

Any advice?

Best Answer

Simply add this CSS:

html, body {
  overflow-x: hidden;
}
body {
  position: relative
}