joshlawler7
04-10-2004, 06:23 PM
Hey everyone - what code can I use to make a colored scrollbar?
|
View Full Version : Colored Scrollbar joshlawler7 04-10-2004, 06:23 PM Hey everyone - what code can I use to make a colored scrollbar? Dude128 04-10-2004, 06:33 PM http://www.lissaexplains.com/css.shtml bourdelson 04-10-2004, 06:34 PM <style type="text/css"> body {scrollbar-face-color : #000000; scrollbar-highlight-color : #000000; scrollbar-3dlight-color : #000000; scrollbar-shadow-color : #000000; scrollbar-darkshadow-color : #000000; scrollbar-track-color : #000000; scrollbar-arrow-color : #000000;} </style> That goes between your <head> tags in your HTML. Edit the bold parts. You can find more CSS here: http://www.lissaexplains.com/css.shtml Edit: Dude beat me. :P nishad 04-10-2004, 06:36 PM <style> body { scrollbar-arrow-color: #000000; scrollbar-base-color: #A6B8C2; scrollbar-dark-shadow-color: #BECDD5; scrollbar-track-color: #A6B8C2; scrollbar-face-color: #BECDD5; scrollbar-shadow-color: #A6B8C2; scrollbar-highlight-color: #EFF2F3; scrollbar-3d-light-color: #ffffff; } </style> that's the code jenarwen 04-10-2004, 06:37 PM i think this should be in the CSS forum. and what they said! |