Click to See Complete Forum and Search --> : colored scroll bar's?


confuesdlilman
03-31-2003, 02:43 AM
how do i make the scroll bar a diffrent color??

Tim158
03-31-2003, 05:05 AM
<style type="text/css">
body {
scrollbar-face-color: #000000;
scrollbar-highlight-color: #000000;
scrollbar-shadow-color: #000000;
scrollbar-3dlight-color: #000000;
scrollbar-arrow-color: #000000;
scrollbar-track-color: #000000;
scrollbar-darkshadow-color: #000000;
}
</style>

You might need to change the colours unless you like black.

I don't think this is compatible in all browsers but as far as I know there are no negative effects in cases where it does not work.

Tim.

pyro
03-31-2003, 07:12 AM
Originally posted by Tim158
I don't think this is compatible in all browsers but as far as I know there are no negative effects in cases where it does not work.It is compatiable with IE5.5+, and degrades well for other browsers.