|
Dreamweaver 8 Scroll Bar Question
I’m working on a custom website and I was wondering if anyone new how to create a custom scrollbar for a dreamweaver 8 document. I’ve currently been using the code below for my scroll bars but with this code the scroll bar is always the same shape and color. If anyone has any suggestions I’d be so relieved.
example:
<style type="text/css">
body {
font: 11px Arial, Helvetica, sans-serif;
}
div#content {
width: 200px;
height: 200px;
background: #ccc;
overflow: scroll;
}
</style>
...
<div id="content">
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nunc dapibus sagittis orci. Mauris magna elit, facilisis a, imperdiet ac, imperdiet a, velit. Vivamus augue tortor, pellentesque in, aliquam ac, vulputate nec, arcu. Suspendisse dolor risus, porttitor vel, luctus sit amet, rhoncus quis, turpis. Proin ut neque.</p>
</div>
|