scrollbar colour

liunx

Guest
Hi, <br />
Anyone know the code for getting the browser scrollbar to appear in a different colour, + where should the code go?<br />
Thanks.<!--content-->normally the code would go in a separate style sheet, or in the head section of an HTML page, but you can really put it just about anywhere you want to. The code is something like this if inserted in the HEAD or other section of an HTML page: <br />
<br />
<STYLE type="text/css"><!--<br />
BODY {<br />
scrollbar-base-color: BLACK;<br />
scrollbar-track-color: white;<br />
scrollbar-face-color: #e643c4;<br />
scrollbar-highlight-color: purple;<br />
scrollbar-3dlight-color: #CC8800;<br />
scrollbar-darkshadow-color: #996600;<br />
scrollbar-shadow-color: #996600;<br />
scrollbar-arrow-color: #FFDDAA;<br />
}<br />
--></STYLE><br />
<br />
I believe its IE5.5 or greater only.<!--content-->
 
Back
Top