PDA

View Full Version : how do I make colored scrollbars?



Tool is God
July 11th, 2001, 00:59
I've seen this on some sites...what's the code for it or where can I find a tutorial on it? Thanks.

coolguy23
July 11th, 2001, 18:55
www.guistuff.com has some useful tools :)

sailorjoto
July 11th, 2001, 20:55
I've never seen it. But that would be cool. Where have you seen it?

lucifer
July 12th, 2001, 06:43
They are everywhere you need IE 5.5 or later to see them.

polestar
July 15th, 2001, 13:46
----------------------------
SCROLLBAR COLOURS
----------------------------

<STYLE TYPE="text/css">
<!--

body {

[bar]
scrollbar-face-color: #0099ff;

[track]
scrollbar-track-color: #000099;

[small arrows]
scrollbar-arrow-color: #ffffff;

[inner bottom & right highlight]
scrollbar-shadow-color: #000099;

[outer top & left highlight]
scrollbar-3dlight-color: #000099;

[outer bottom & right highlight]
scrollbar-darkshadow-color: #000000;

[inner top & left highlight]
scrollbar-highlight-color: #ffffff;
}

-->
</STYLE>

Put that between your <head> tags and smoke it!

Delete the stuff in the square brackets - that's just to tell you what's what.

Enjoy!

bigperm
July 16th, 2001, 06:02
http://msdn.microsoft.com/workshop/samples/author/dhtml/refs/scrollbarColor.htm
This lets you see what it will look like. Kinda useful.