Thanks Bazzle... I'm much closer but it isn't quite right.
My images are now contained properly in the div but it's flowing vertical now with a vertical scroll. I need it to be horizontal. Any other suggestion? I don't stand why it's doing that even though I've specified a height.
My new codes...
Quote:
<div id="container">
<div id="content">
<img src="1.jpg"/><img src="2.jpg"/><img src="3.jpg"/><img src="4.jpg"/><img src="5.jpg"/>
</div>
|
Quote:
#container {
position: absolute;
top:170px;
width:950px;
height:500px;
overflow:auto;
padding-top:10px;
padding-bottom:10px;
margin-left:20px;
margin-right:20px;
#content {
width: 3870px;
height: 500px;
}
|