Colored Scrollbars

Written by: Kikyou
Added: 2004-04-03
Views [ 7942 ]


Requirements: HTML editor

Learn to make colored scrollbars that can match your layout.

Insert this between the <style> and </style> tags or in your external CSS stylesheet:

body
{
scrollbar-arrow-color: #color;
scrollbar-face-color: #color;
scrollbar-highlight-color: #color;
scrollbar-shadow-color: #color;
scrollbar-3dlight-color: #color;
scrollbar-track-color: #color;
scrollbar-darkshadow-color: #color;
}

Just replace color with the color you want.

If you want the scrollbar to be based on one color:

body
{
scrollbar-base-color: #color;
}

It will automatically generate different shades of the specified color for your scrollbar.

Here is a visual of the scrollbar colors:



You can make the scrollbars three-dimensional or flat. Different color shades create different types of scrollbars.

Help

Problems? Questions? Please ask at the Message Board.