Currently, I have a 4000px width image as the header of my website. To hide the horizontal browser scrollbar, I am using the following CSS:
html
{
overflow-x: hidden;
}
However, this method results in the horizontal scrollbar never appearing. I actually want the browser scrollbar to only appear when the main content of my site is out of view.
Can anyone recommend a technique or style to achieve this effect?
Thank you!