View Full Version : chroma filtered scrollbar


xxjenjxx
05-10-2003, 02:24 PM
I'm really confused as to make a scroll bar like on this site:
http://splashed.digital-splash.net/

I know that it uses a chroma filter :
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/filter/reference/filters/chroma.asp

but I have no idea how to do it basically, so can anyone help? do you just put a code in css or something?!

amicus
05-10-2003, 02:36 PM
here you go, just change the colors to what ever you want :)

<style type="text/css">
body {
scrollbar-3dlight-color: #CDC7B1;
scrollbar-arrow-color: #DDF7E1;
scrollbar-base-color: #DDF7E1;
scrollbar-darkshadow-color: #CDC7B1;
scrollbar-face-color: #DDF7E1;
scrollbar-highlight-color: #927963;
scrollbar-shadow-color: #927963;
scrollbar-track-color: #DDF7E1;
}
</style>

xxjenjxx
05-10-2003, 04:47 PM
Thanks for the help. I managed to work out what I was doing wrong