View Full Version : whats wrong with this?


jessesbaby22
03-17-2003, 08:18 PM
i want the colors in my style sheet to match my layout which is here-
http://www.geocities.com/liveson1.html
the links arent the colors i want them, and the cursor isnt how i want it to be. whats wrong with my code?

<style type="text/css">
<!--

A:link
{ text-decoration: underline; color:#CC3333 }
cursor:crosshair

body
{ background-color: #990033;


font-family: tahoma
color: #FFFFFF ;
letter-spacing: 4pt;
font-weight:normal;
font-size:medium;



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 }



input, textarea

font-family: tahoma
color: #000000;
border-style: groove
border-color: #000000;
border-width: 6
-->
</style>

</html>
</head>


u can IM me at princessmilly123

kittycat
03-17-2003, 08:23 PM
You just forgot a few parts in the code, try this:

A:link
{ text-decoration: underline; color:#CC3333 }
A:hover { cursor:crosshair }

body
{ background-color: #990033;
font-family: tahoma;
color: #FFFFFF ;
letter-spacing: 4pt;
font-weight:normal;
font-size:medium;
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 }

input, textarea
{ font-family: tahoma;
color: #000000;
border-style: groove;
border-color: #000000;
border-width: 6 }

Also, take out the </html> that you have there

(by the way, the link doesn't work)

jessesbaby22
03-17-2003, 08:35 PM
that doesnt work... heres the right link
http://www.geocities.com/still_lives_on/liveson1.jpg

Alcy
03-17-2003, 08:46 PM
Neither link works... the second one just links to an image....

Did you re-add the style tags to the code kittycat gave?