View Full Version : I cant get this style sheet to work :(


XxILostMyMindxX
08-29-2003, 01:12 AM
this is the code:

<style type="text/css">
A:link
{ text-decoration: value; none color:#000000; }
A:visited
{ text-decoration: value; none color:#000000; }
A:active
{ text-decoration: value; none color:#000000; }

cursor: value; default; }

h1 {font-family: value; arial narrow
color: value; #000000 }

p {font-family: value; arial narrow
color: value; #000000 }

body
{
font-family: value; arial narrow
color: #000000 ;
letter-spacing: value; 1pt
font-weight: value; 50
font-size: value; xx-small

scrollbar-face-color : white;
scrollbar-highlight-color : white;
scrollbar-3dlight-color : white;
scrollbar-shadow-color : white;
scrollbar-darkshadow-color : white;
scrollbar-track-color : white;
scrollbar-arrow-color : white; }
</style>

I dont know whats wrong with it, please help!!

duckgirl
08-29-2003, 01:21 AM
If it's external, just take out the style tags from the beginning and end.

kittycat
08-29-2003, 01:48 AM
Most of your mistakes are that you need to replace value with the actual value:

<style type="text/css">
A:link
{ text-decoration: none; color:#000000; }
A:visited
{ text-decoration: none; color:#000000; }
A:active
{ text-decoration: none; color:#000000; cursor: default; }

h1 {font-family: arial narrow;
color: #000000; }

p {font-family: arial narrow;
color: #000000; }

body
{
font-family: arial narrow;
color: #000000;
letter-spacing: 1pt;
font-weight: 50;
font-size: xx-small;
scrollbar-face-color : white;
scrollbar-highlight-color : white;
scrollbar-3dlight-color : white;
scrollbar-shadow-color : white;
scrollbar-darkshadow-color : white;
scrollbar-track-color : white;
scrollbar-arrow-color : white; }
</style>

XxILostMyMindxX
08-30-2003, 01:49 AM
Ohhhhh, ok thx, i feel sooooo stoopid! lol thanx again!!!