exemption has showed you how to style the scroll bars, where I will now show you how to create the scrollbar themselves!
The first thing that you need to do is to create a page that is going to hold all the text that you want to scroll through. For examples sake lets name it page1.html
You now need to insert something called an iFrame. These are known as floating frames.
Basically, all you need to insert into your webpage is the following piece of code:
Code:
<iframe name="iframe" src="page1.html" width="300px" height="300px"></iframe>
You can also load other pages from within the page by adding:
Code:
<a href="http://forums.x10hosting.com/graphics-webdesign/page2.html" target="iframe">click here to load page 2</a>
Notice the target part of the link code. That tells the web page to direct the page into the iframe, which we named iframe!