I have content on my page in boxes.
They are displayed like this.
Box1 Box2 Box3 Box4
And then if I add anymore it jumps down and creates a vertical overflow.
But I want it to have a horizontal scroll bar.
This is how the wrapper is in css.
#content {
overflow:auto;
width:100%;
height:450px;
}
I’m assuming you mean something like this: http://jsfiddle.net/9vvtg/
Just need to add
to the container