View Full Version : Not working at all!


groovyrach_2002
12-16-2005, 08:37 AM
Ok, i have my stylesheet which is located in a subdirectory. I'm using yahoo geocities:

A:link
{ text-decoration: underline; color="#000000" }
A:visited
{ text-decoration: [line-through]; color="#330033" }
A:active
{ text-decoration: [blink]; color="#000000"}

body
{ background-image: url(b4.bmp);
font-family: verdana;
color: #000000;
font-weight: bold;
font size: xx-small;

scrollbar-face-color: #FF0000;
scrollbar-highlight-color: #FF0000;
scrollbar-3dlight-color: #FF0000;
scrollbar-shadow-color: #FF0000;
scrollbar-darkshadow-color: #FF0000;
scrollbar-track-color: #FF0000;
scrollbar-arrow-color: #FFFFFF;

margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
}

And on all the pages I want it linked to I put this:
<LINK href="stylesheet\stylesheet.css" rel="stylesheet" type ="text/css">

But its not working! I don't know why...can sumbody help me please!

elfenheroin
12-16-2005, 10:27 AM
Possibly because of the space between type and =.

Even the smallest typo can make a huge difference.

pb&j
12-16-2005, 02:17 PM
fixed up your css. have a look at the differences to learn which parts where done wrong....

A:link
{ text-decoration: underline; color:#000000; }
A:visited
{ text-decoration: line-through; color:#330033; }
A:active
{ text-decoration: blink; color:#000000; }

the other part looks ok.