View Full Version : whats wrong with this scrollbar code?


puppiepower
05-05-2003, 11:25 PM
i put this code in, but my scrollbars are still the same boring grey colour.. does anyone know whats wrong with my code?


<style type="text/css">
<!--
body{
scrollbar-3dlight-color:#00C0A3;
scrollbar-arrow-color:#00C0A3;
scrollbar-base-color:#FFFFFF;
scrollbar-darkshadow-color:#00C0A3;
scrollbar-face-color:#FFFFC0;
scrollbar-highlight-color:#000000;
scrollbar-shadow-color:#00C0A3 }
-->
</STYLE>

kittycat
05-05-2003, 11:40 PM
Your code looks ok, did you put in in the right spot (between <head> and </head>)?

Also, you have to make sure that your browser supports coloured scrollbars, which is IE 5.5+ I think. If the scrollbars on this site appear grey to you, then your browser doesn't support it.

amicus
05-05-2003, 11:44 PM
no boring scroll bars here, your code is working :). just make sure the 'style' tags are inside the 'head' tags.

<STYLE TYPE="text/css">
<!--
BODY {
SCROLLBAR-3DLIGHT-COLOR: #00C0A3;
SCROLLBAR-ARROW-COLOR: #00C0A3;
SCROLLBAR-BASE-COLOR: #FFFFFF;
SCROLLBAR-DARKSHADOW-COLOR: #00C0A3;
SCROLLBAR-FACE-COLOR: #FFFFC0;
SCROLLBAR-HIGHLIGHT-COLOR: #000000;
SCROLLBAR-SHADOW-COLOR: #00C0A3;
}
-->
</STYLE>

puppiepower
05-05-2003, 11:45 PM
lol.. oops, i forgot to put in <head> tags.. silly me!