How do I change colours of the scroll bars

G

Guest

I am using frontpage 2003 and would like to have a variety of colours for the
scroll bars on the various pages. Can someone tell me how to do this please.
 
D

David Berry

You would do this with a CSS stylesheet. Ex:<style type="text/css">body {
scrollbar-arrow-color: #6C000E;
scrollbar-base-color: #1D50AC;
scrollbar-dark-shadow-color: #1D50AC;
scrollbar-track-color: #2559AF;
scrollbar-face-color: #FFCC66;
scrollbar-shadow-color: #000000;
scrollbar-highlight-color: #D9D9D9;
scrollbar-3d-light-color: #FFCC66;
}<style>
You can enter the colors using Web-safe color values as represented by
regular color names (such as green, black, and red), hexadecimal values
(such as #008000, #000000, or #FF0000"), or RGB values.

For help in creating style sheets for your own custom scroll bar, you can go
to http://echoecho.com/tools.htm and use the Custom Scrollbar tool to create
the code that you need to put into your Web pages' <HEAD> section.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top