In that case, you could add some empty lines using:
a number of times after each placeholder. Or use some good old 'nonsense' text to simulate the amount of content expected to eventually be there.
Alternatively, in each invocation in the body of the page where you have:
Code:
<script type="text/javascript">
// * Scrollable content script III scroller module * configure this scroller:
//specify speed of scroller (greater=faster)
speed=6;
//specify unique content id * REQUIRED FOR EACH SCROLLER *
contentid="content2";
//specify scroller width
scrollerwidth=210;
//specify scroller height
scrollerheight=115;
//specify scroller border [width, style, color]
scrollerborder=['4px', 'outset', 'blue']
//specify location of controls, 1 for side, 0 for bottom
sidecontrols=0
//specify control images
upimage="up.gif"
downimage="down.gif"
//Note: Variables set for a previous scroller will carry through to the next if omitted.
//All variables must be present and set for the first scroller on a page.
//Do Not Edit or Remove:
topwrite();
</script>
<!-- INSERT CONTENT HERE -->
<div style="font-family:sans-serif;font-size:90%;margin-left:.5ex;margin-top:-.8em!important;margin-top:.2em;"><p>
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed dictum. Pellentesque quis purus vitae risus cursus aliquet.
</p>
<p>
- Donec elementum. Nam malesuada pellentesque leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
</p>
<p style="margin-bottom:.5ex">
- Sed eu mi. Phasellus nec sapien nec orci consequat ultrices. Aliquam interdum justo ac libero.
</p>
<div style="position:relative;left:-1em;"><ul>
<li>Integer cursus lacinia quam.</li>
<li>Quisque vehicula sem nec arcu.</li>
<li>Cras vel mauris varius mi suscipit mollis.</li>
<li>Nam vulputate facilisis erat.</li>
<li>Praesent tempus elit eu nulla.</li>
</ul>
<ul style="margin-bottom:1ex;">
<li>Vestibulum aliquam sapien vitae tortor auctor vulputate.</li>
<li>Morbi feugiat auctor diam.</li>
<li>Nullam non velit vel ante interdum tincidunt.</li>
<li>Mauris vel tellus non urna venenatis elementum.</li>
</ul></div>
</div>
<!-- END CONTENT - Stop Editing-->
<script type="text/javascript">bottomwrite();</script>
<!-- End Scrollable content script III scroller module -->
If the (highlighted in the above) height setting is taller than the content, this could be the cause.
In any case, once you fill these scrollers with actual content, the problem should disappear.
Bookmarks