View Full Version : Html Code For Side Scrollers


taylorklotz_2
02-13-2005, 01:33 PM
I want to change the color of my scrollers on the side of my page but i cant find a code for it.... anyone have 1?

Pink4eva
02-13-2005, 01:52 PM
This should do the trick :)

<script>
<!--
{scrollbar-base-color: 333333;
scrollbar-arrow-color: 6E8767;
scrollbar-face-color: 333333;
scrollbar-track-color: 282828;
scrollbar-shadow-color: 333333;
scrollbar-highlight-color: 6E8767;
scrollbar-dark-shadow-color: 282828;
scrollbar-3d-light-color: 333333}
</script>

Just change the colour hex codes to what you wish it to be, just leave blanc if you dont wish to have a colour there.

kittycat
02-13-2005, 03:23 PM
And the corrent version of that code that will actually work:

<style type="text/css">
body
{scrollbar-base-color: #333333;
scrollbar-arrow-color: #6E8767;
scrollbar-face-color: #333333;
scrollbar-track-color: #282828;
scrollbar-shadow-color: #333333;
scrollbar-highlight-color: #6E8767;
scrollbar-dark-shadow-color: #282828;
scrollbar-3d-light-color: #333333}
</style>

This is also on Lissa's CSS page: http://www.lissaexplains.com/css.shtml