I don't know about Dreamweaver (even though I use it every day), but the normal way of putting scrollbars on a div is by setting a height to it, and making the overflow auto:
HTML Code:
<head><style>
#scroll {
height: 100px;
overflow: auto;
}
</style></head><body><div id="scroll"><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p></div>
Now, if the text in the box overflows so that it would be greater than 100px tall, scrollbars will be added in order to allow it to be visible.
__________________
I build web things. I work for the startup Please login or register to view this content. Registration is FREE .