PDA

View Full Version : scroll color



aconeinc
December 3rd, 2003, 10:25 PM
Can someone pls tell me the exact stylesheet CSS steps to take in order to change my browser's scroll color. I've never used CSS before, pls be patiently explanative. Tks

regards
Ken

H4T
December 3rd, 2003, 10:27 PM
Put this in your < HEAD > section of your code


<style>
<!--
BODY {
SCROLLBAR-FACE-COLOR: #eeeeff;
SCROLLBAR-HIGHLIGHT-COLOR: #b8c9dc;
SCROLLBAR-SHADOW-COLOR: #b8c9dc;
SCROLLBAR-3DLIGHT-COLOR: #b8c9dc;
SCROLLBAR-ARROW-COLOR: #b8c9dc;
SCROLLBAR-TRACK-COLOR: #eeeeff;
SCROLLBAR-DARKSHADOW-COLOR: #eeeeff;
}
-->
</style>

Play around with the options, I'm sure you'll get what you're after!