I work on a website whose main content block is too wide to fit fully inside the smaller resolution screens.
Here's the site:
The content is centered in the middle of the screen.
I need a horizontal scrollbar to appear when the content doesn't fit inside the screen.
I force the horizontal scrollbar to appear with a div:
<div id="stretcher" style="width:1200px; min-width:1200px; height:1px; position:absolute; margin:0 auto"></div>
The problem: if I initially open the website in a large resolution screen (or wider window), and then make the browser window narrower, the scrollbar appears just where it's supposed to. However - if I continue making the window narrower, the scrollbar handle stays at the left side, and scrolling further to the left becomes impossible. Also, If the browser window is initially smaller than the content, the scrollbar appears all the way to the left, and I can't scroll more to the left to reveal the left side of the content that is hidden.
The question: how can I force the scroller to the middle, so that I can scroll left to reveal the hidden part of the content?
I would be grateful for your advice!