Colored Scrollbars

This "trick" will make your scrollbars the color of your choice. Only works in Internet Explorer 5.5+ though.

First you need a list of colors you want to use. These colors should look something like #000000 or #FCFC99.

Place the following code under the </title> tag, but before the </head> tag.

<style type="text/css">
body {
scrollbar-face-color: #000000;
scrollbar-highlight-color: #000000;
scrollbar-shadow-color: #000000;
scrollbar-3dlight-color: #000000;
scrollbar-arrow-color: #000000;
scrollbar-track-color: #000000;
scrollbar-darkshadow-color: #000000;
}
</style>

Too complicated? This code lets the computer do all the work:

<style type="text/css">
body {
scrollbar-base-color: #000000;
}
</style>

Replace 000000 with the number code that you would like.

Main?