View Full Version : change scroll color


fatora
11-14-2003, 07:21 PM
hey!
i really need help
i have to change the scroll color for my web
i think it has to be and html code that goes in the div part

thanx a lot for the help!

toolman
11-14-2003, 07:45 PM
Add this to your page:

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

Change the #000000 to whatever color you want.

MaGiCSuN
11-15-2003, 11:23 AM
to answer your question about the div part

add this to the <div> tag:

style="scrollbar-face-color:#000000;
scrollbar-arrow-color:#000000;
scrollbar-track-color:#000000;
scrollbar-shadow-color:#000000;
scrollbar-highlight-color:#000000;
scrollbar-3dlight-color:#000000;
scrollbar-darkshadow-color:#000000;"

Love,
Mirna

fatora
11-15-2003, 12:39 PM
thanx alot that really helped!!