This tutorial will show you how to change the scroll bar colors:

1.Copy this code and paste it in the <head> tag in the sorce of your page
CODE

<style>
BODY {
   scrollbar-face-color: #000000;
   scrollbar-shadow-color: #000000;
   scrollbar-highlight-color: #000000;
   scrollbar-3dlight-color: #FF0000;
   scrollbar-darkshadow-color: #FF0000;
   scrollbar-track-color: #000000;
   scrollbar-arrow-color: #FFFFFF;}
</style>


In order to change colors you need to change thise numbers:
ex. #000000 is black
#FF0000 is red

To look up 256 safe web colors click
here

Reply