To change the color of a scrollbar of your website may be done quite easily. However, it should not
be a major part of your website's overall design since it may only be viewed in Internet Explorer.
Example of changing color of your scrollbar in IE Browser:
You may customize the colors as you need. Just change the hexidecimals to the color you wish to use.
be a major part of your website's overall design since it may only be viewed in Internet Explorer.
Example of changing color of your scrollbar in IE Browser:
body {
scrollbar-face-color: #808080;
scrollbar-arrow-color: #FFFFFF;
scrollbar-highlight-color: #FFFBF0;
scrollbar-3dlight-color: #808080;
scrollbar-shadow-color: #FFFBF0;
scrollbar-darkshadow-color: #808080;
scrollbar-track-color: #CCCCCC;
}
P.S.You may customize the colors as you need. Just change the hexidecimals to the color you wish to use.