Question : DreamWeaver Overflow: How to control scroll "jumps"

I have a Dreamweaver box with overflow = auto. Works fine EXCEPT:

Page 1 is showing lines 1 - 40 of text
Click middle of vertical scroll bar
Page 2 shows lines 36 - 75
 I want Page 2 to show lines 41 - 80
Solution???
thanks

HTML:
<div id="blurbtext">
<p> blah blah blah
.......
blah blah blah</p>
</div>

CSS:
#blurbtext{
      height: 565px;
      width: 450px;
      font-family: "Times New Roman", Times, serif;
      font-size: 18px;
      font-style: normal;
      line-height: 18px;
      margin-bottom: 1px;      
      margin-top: 10px;
      overflow:auto;
}


Answer : DreamWeaver Overflow: How to control scroll "jumps"

Hi Elliot123,

There's not much you can do to control scrolling.  The browsers handle that depending on length of the content and the height of the line and the zoom applied by the user.  In short, it's not something you can control.

What you can do is not allow the above to be controlled by the user.  That means switching to Flash or using AJAX to "page" the content.
Random Solutions  
 
programming4us programming4us