Log in

View Full Version : Text box scroll down bar.



davo1979
11-29-2010, 05:58 PM
Hello. Im looking for a text box scroll down side bar. I have a limited space on my website and would like to put a simple text box so that I can add content and have people scroll down within that text box. Anyone know of such a script.

Thanks,

Craig.

Beverleyh
11-29-2010, 06:10 PM
If you just use a div with fixed dimensions but set the overflow to auto, that should do the job;


<div style="width:250px; height:400px; overflow:auto;">
<p>content</p>
<p>content</p>
<p>content</p>
</div>
Once the content becomes greater than what the div can comfortably contain, a scrollbar will appear to allow manual scrolling.