How do I change colours of the scroll bars

  • Thread starter Thread starter Guest
  • Start date Start date
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.
 
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.
 
Back
Top