Entry
How Do I Change The Color Of My Scrollbar?
Mar 9th, 2001 06:38
Ben Gordon,
This is an IE only trick, but is very simple to use, just place the
following code between the head tags of the page that you would like to
change the scrollbar color of:
<style>
body {
scrollbar-base-color: white;
scrollbar-dark-shadow-color: white;
scrollbar-face-color: blue;
scrollbar-highlight-color: white;
scrollbar-shadow-color: black;
scrollbar-3d-light-color: white;
}
</style>
Then just change the colors for each property to match your site.