View Full Version : html: colored scroll bars?
xdroorsx
01-07-02, 02:45 PM
could somebody give me a quick rundown of the code necessary to make the scroll bars on the page colored (not sure how to really explain, i'm sure some of you know what i'm talking about). tia
Its done with CSS. Go to a website that does it, and look at the CSS in their page. It should be kinda easy to spot.
Jeff Bolton
01-07-02, 10:03 PM
the scroll bars on these forums are colored for me. i've only been noticing it for a while..maybe just since i updated to IE6...who knows
jeff
Ok, well, took me 2 seconds to figure it out for you.
The source for this page has:
BODY {
SCROLLBAR-BASE-COLOR: #1C2E48;
SCROLLBAR-ARROW-COLOR: #FFF788;
}
which is enclosed with a bunch of other stuff in:
<style type="text/css">
... stuff ...
</style>
xdroorsx
01-08-02, 03:43 PM
that's what i was looking for, much appreciated :)
Burning Phoenix
01-08-02, 08:16 PM
As mentioned above is the right and here is it with all the available features i know of:
<STYLE TYPE="text/css">
BODY
{
scrollbar-base-color: blue;
scrollbar-arrow-color: blue;
scrollbar-DarkShadow-Color: blue;
scrollbar-Face-Color:blue;
scrollbar-Highlight-Color:blue;
scrollbar-Shadow-Color:blue;
scrollbar-Track-Color:blue;
}
</STYLE>
PS: Place the color you want in place of the color blue i used here.
DnA_DragoN
01-10-02, 06:52 AM
I wanted to know that to.. so THANKS!!
UnseenMenace
01-10-02, 04:26 PM
It may be worth remembering that coloured scroll bars are only supported by late Internet Explorers and no other Browser
vBulletin® v3.8.7, Copyright ©2000-2013, vBulletin Solutions, Inc.