Custom HTML Scrollbars

You may want to customize a Internet explorer's scrollbars to match design of a web site. This can be easily done through CSS styles by writing code for scrollbar element.



How it works

Add the following to the <head> tag:
<STYLE type="text/css">
   body {
      scrollbar-face-color:#FFFFFF;
      scrollbar-arrow-color:#0829AC;
      scrollbar-highlight-color:#9C8EFD;
      scrollbar-3dlight-color:#104ED5;
      scrollbar-shadow-color:#000000;
      scrollbar-darkshadow-color:#000053;
      scrollbar-track-color:#FFFFFF;
   }
</STYLE>