Click to See Complete Forum and Search --> : Scrollable Div


scottyrob
01-21-2007, 12:33 PM
Hi there,

If you go to www.merseyechoes.com you will see in the middle of the page is the image and some text. How can i make this a Div, that if the content does not fit in this area, then make it scrool... I would like each page to be exactly the same, but instead of the image and text, have whatever is relevant to that page!

Scott

KDLA
01-21-2007, 01:03 PM
Your link doesn't work, so I don't have a reference, but....
Set the height, then put the overflow to scroll.

#scroller {
display: block;
margin: 0;
padding: 0;
width: 500px;
height: 300px;
overflow: scroll;
}