C Chuck Davis Jun 13, 2005 #2 digrega said: how can I insert a text scroller in my web page Click to expand... Just a few lines down you would have found this post by JDR. You can find a variety of scrolling boxes here: http://www.dynamicdrive.com/dynamicindex2/index.html --
digrega said: how can I insert a text scroller in my web page Click to expand... Just a few lines down you would have found this post by JDR. You can find a variety of scrolling boxes here: http://www.dynamicdrive.com/dynamicindex2/index.html --
G Guest Jun 16, 2005 #3 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
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
C Cheryl D Wise Jun 16, 2005 #4 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
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