html scroller

  • Thread starter Thread starter Guest
  • Start date Start date
I visited the site listed, but I was looking for the generic manual scroller
with the scroll bar on the side and up and down buttons. Didn't see one
there may be I missed it. ????
Thanks for the reply.
digrega
God Bless
 
If you want a 'generic manual scroller" you can use css. Create a div the
size you want displayed and overflow: scroll like this:

..scroller {
width: 200px;
height: 150px;
overflow: scroll;
}

Then in your code:
<div class="scroller">
all the text, headers, links, etc you want here
</div>


--
Cheryl D. Wise
MS FrontPage MVP
http://mvp.wiserways.com
http://starttoweb.com
Online instructor led web design training - Next Session June 26th
 
Back
Top