Saturday 05 February 2005 12:27:08 pm
Try this code:
<div id="content_container_inner">
<div id="fixedsize">
your text here to scroll
</div> </div> this goes in stylesheet:
div#fixedsize {
FLOAT: left;
OVERFLOW:auto;
WIDTH: 100%;
HEIGHT: 100%; } think the overflow is the trick (add some style info for content_container_inner). Hope it helps :)
|