View Full Version : Scrollbar


hunterjumper
06-06-2003, 03:32 PM
I am trying to change the look of my scroll bar, but my CSS sheet doesn't seem to be working...

Also, my corsshair doesn't seem to work.

<style type="text/css">
<!--
A:link {text-decoration:none; color:"#000066"}
A:visited {text-decoration:none; color:"#000066"}
A:hover {text-underline overline: none; color:"#000066"}
scrollbar-face-color: "#6699FF";
scrollbar-highlight-color: "#000066";
scrollbar-3dlight-color: "#000066"; scrollbar-shadow-color: "#000066";
scrollbar-darkshadow-color: "#000066"; scrollbar-track-color: "#000066";
scrollbar-arrow-color: "#000066"}
cursor: crosshair}
-->
</style>

Lemon Squash
06-06-2003, 04:12 PM
Did you put it between your head tags?

sherri
06-06-2003, 06:16 PM
I can't see what wrong with it, so try and compare it to this code:

<style type=text/css><--
BODY{background:COLOR;scrollbar-arrow-color:COLOR;scrollbar-base-color:COLOR;
scrollbar-dark-shadow-color:COLOR;scrollbar-shadow-color:COLOR;scrollbar-highlight-color:COLOR;
scrollbar-3dlight-color:COLOR;scrollbar-track-color:COLOR}
A:LINK{font-family:NAME;font-size:#pt;text-decoration:none;color:COLOR}
A:VISITED{font-family:NAME;font-size:#pt;text-decoration:none;color:COLOR}
A:ACTIVE{font-family:NAME;text-decoration:none;color:COLOR}
A:HOVER{color:COLOR;cursor:hand;text-transform:uppercase;font-family:NAME}--></style>



Or you can just go here to get more info on CSS:

http://www.hypergurl.com/csstutorial1.html

Hope this helps you alittle

kittycat
06-06-2003, 10:41 PM
<style type="text/css">
<!--
A:link {text-decoration:none; color:#000066;}
A:visited {text-decoration:none; color:#000066;}
A:hover {text-underline overline: none; color:#000066; cursor: crosshair;}
body { scrollbar-face-color: #6699FF;
scrollbar-highlight-color: #000066;
scrollbar-3dlight-color: #000066; scrollbar-shadow-color: #000066;
scrollbar-darkshadow-color: #000066; scrollbar-track-color: #000066;
scrollbar-arrow-color: #000066;}
-->
</style>

That code should work. You forgot to put the scroll bar bits and the cursor code in a section thing, and you also shouldn't have quotes around your colour values. Just compare the 2 to see what's changed.