Hello all. I have a div container with child divs floated left with basically the the following mark-up:
<div class="container">
<div id="list">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
</div>
First off I can't get the horizontal scrollbar for #list to appear. What CSS is required to make that happen? When I try to scroll right in #list to see the rest of the hidden .item divs I can't scroll past the first hidden .item div. The result is a bounce
back effect. I would like a simple carousel-like view. Can anyone help me with this? Thanks.