View Full Version : CSS Help!


jlo_girlo
07-28-2003, 06:59 PM
Can anyone edit or see wat's wrong with my sheet?

<STYLE type="text/css">
<!--
BODY
{
direction:;
background-attachment:fixed;
scrollbar-arrow-color: pink;
scrollbar-track-color: white;
scrollbar-face-color: pink;
scrollbar-highlight-color: white;
scrollbar-3dlight-color: white;
scrollbar-darkshadow-color: white;
scrollbar-shadow-color: white
}
-->

<!--
A:link{color:blue;text-decoration:underline;font-weight:normal;}
A:visited{color:blue;text-decoration:underline;font-weight:normal;}
A:hover{color:white;text-decoration:none;font-weight:bold;}
A:active{color:blue;text-decoration:underline;font-weight:normal;}
}
-->

<!--
font-family: value; [your font name]
color: #FFFFFF;
letter-spacing: value;3pt
font-weight: value; normal
font-size: value; xx-small,
any number value; 8pt
}
-->

{ }
<!--
{ }
input, textarea
{ background: #FF99CC;
font-family: value; verdana
color: #000000;
border-style: value; dotted, double
border-color: #FFFFFF;
border-width: valuepx;1}
}
-->
</STYLE>

Thanx!

Dude128
07-28-2003, 07:08 PM
take out what I have in red. it's just there to show you where you messed up.

<STYLE type="text/css">
<!--
BODY
{
direction:; this isn't necessary, since you don't specify a value
background-attachment:fixed;
scrollbar-arrow-color: pink;
scrollbar-track-color: white;
scrollbar-face-color: pink;
scrollbar-highlight-color: white;
scrollbar-3dlight-color: white;
scrollbar-darkshadow-color: white;
scrollbar-shadow-color: white
}
--> not needed

<!-- not needed
A:link{color:blue;text-decoration:underline;font-weight:normal;}
A:visited{color:blue;text-decoration:underline;font-weight:normal;}
A:hover{color:white;text-decoration:none;font-weight:bold;}
A:active{color:blue;text-decoration:underline;font-weight:normal;}
}
--> not needed

<!-- not needed
font-family: value; [your font name] you have to put the name of the font(s) where it says value, and get rid of the thing in brackets
color: #FFFFFF;
letter-spacing: value;3pt value goes where it says value, and before the semi-colon
font-weight: value; normal same as above
font-size: value; xx-small, same as above
any number value; 8pt same as above
}
--> not needed

{ } not needed
<!-- same as above
{ } same as above
input, textarea
{ background: #FF99CC;
font-family: value; verdana value goes where it says value, and before semi-colon
color: #000000;
border-style: value; dotted, double same as above
border-color: #FFFFFF;
border-width: valuepx;1} your value goes where it says value, and all values should come before the semi-colon, and you have an extra brace
}
-->
</STYLE>