View Full Version : Helllp!!!!!!!!


Mel
04-22-2003, 09:55 PM
I can't seem to get the CSS to work on my site, can someone help me?

<style type="text/css">
<!--
A:link
{text-decoration:underline; color:#00ccff}
A:visited
{text-decoration:underline; color:#cc66ff}
A:active
{text-decoration:underline}
A:hover
{text-decoration:underline; color:#ccccff}

body
{background-color:#000000;
background-repeat:repeat;
background-position:center,center;
background-attachment:fixed}

{font-family:Book-Antiqua;
color:#ff9999;
letter-spacing:3pt;
font-weight:normal;
font-size:medium}

{scrollbar-face-color:#000000;
scrollbar-highlight-color:#ccccff;
scrollbar-cdlight-color:#ccccff;
scrollbar-darkshadow-color:#000000;
scrollbar-arrow-color:#ccccff}

-->
</style>

lefty
04-22-2003, 10:20 PM
Well you didn't mention exactly what's not working, but I did notice something - you shouldn't have all kinds of brackets in your body tag. It should look like this:

body
{background-color:#000000;
background-repeat:repeat;
background-position:center center;
background-attachment:fixed;
font-family:Book-Antiqua;
color:#ff9999;
letter-spacing:3pt;
font-weight:normal;
font-size:medium;
scrollbar-face-color:#000000;
scrollbar-highlight-color:#ccccff;
scrollbar-cdlight-color:#ccccff;
scrollbar-darkshadow-color:#000000;
scrollbar-arrow-color:#ccccff}

Mel
04-22-2003, 10:28 PM
Well, the scrollbars didn't change colors and the font doesn't change to Book Antiqua

lefty
04-22-2003, 10:48 PM
heh I didn't even look through the code before posting, bad HTML geek. :P Try this, I bolded the stuff I changed:

body
{background-color:#000000;
background-repeat:repeat;
background-position:center center;
background-attachment:fixed;
font-family:Book Antiqua;
color:#ff9999;
letter-spacing:3pt;
font-weight:normal;
font-size:medium;
scrollbar-face-color:#000000;
scrollbar-highlight-color:#ccccff;
scrollbar-3dlight-color:#ccccff;
scrollbar-darkshadow-color:#000000;
scrollbar-arrow-color:#ccccff;}

You don't have scrollbar-track-color or scrollbar-shadow-color, just so you know in case you wanted to change those, too.
Also, does your browser support colored scrollbars? Make sure before making yourself crazy over this code. :)