View Full Version : Links wont change


Arrianna
11-16-2003, 10:04 PM
Hey, i just did my css for my site but and I made it so that my links were black and none (so no underline or anything) but the links are still blue w/ an underline help here is my site .. http://www.angelfire.com/poetry/girly13 and here is my css

<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; }
A:hover
{ text-decoration: none; color:#000000;

background-color: #996666;

cursor: crosshair;

h1 {font-family: Tahoma,Arial;
color: #000000; }

p {font-family: Tahoma,Arial;
color: #000000; }

body
{ background: #996666;

font-family: Tahoma,Arial;
color: #000000 ;
letter-spacing: 3pt, 5pt;
font-weight: normal;
font-size: 12pt;

scrollbar-face-color : #996666;
scrollbar-highlight-color : #000000;
scrollbar-3dlight-color : #000000;
scrollbar-shadow-color : #996666;
scrollbar-darkshadow-color : #996666;
scrollbar-track-color : #996666;
scrollbar-arrow-color : #000000;

</style>

kicker91
11-16-2003, 10:11 PM
letme fix it up for you...

<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; }
A:hover
{ text-decoration: none; color:#000000; }

body
{ background: #996666;
cursor:crosshair;
font-family: Tahoma,Arial;
color: #000000;
letter-spacing: 3pt, 5pt;
font-weight: normal;
font-size: 12pt;
scrollbar-face-color : #996666;
scrollbar-highlight-color : #000000;
scrollbar-3dlight-color : #000000;
scrollbar-shadow-color : #996666;
scrollbar-darkshadow-color : #996666;
scrollbar-track-color : #996666;
scrollbar-arrow-color : #000000;
</style>

[/B][/QUOTE]

Arrianna
11-17-2003, 02:16 AM
I copied and pasted your code it still wont work look.. http://www.angelfire.com/poetry/girly13/ help!!

kittycat
11-17-2003, 02:48 AM
<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; }
A:hover
{ text-decoration: none; color:#000000;

background-color: #996666;

cursor: crosshair; }

h1 {font-family: Tahoma,Arial;
color: #000000; }

p {font-family: Tahoma,Arial;
color: #000000; }

body
{ background: #996666;

font-family: Tahoma,Arial;
color: #000000 ;
letter-spacing: 3pt, 5pt;
font-weight: normal;
font-size: 12pt;

scrollbar-face-color : #996666;
scrollbar-highlight-color : #000000;
scrollbar-3dlight-color : #000000;
scrollbar-shadow-color : #996666;
scrollbar-darkshadow-color : #996666;
scrollbar-track-color : #996666;
scrollbar-arrow-color : #000000; }

</style>

Try that, you forgot a few closing }. If this is an external stylesheet, take out the beginning and ending style tags.

pb&j
11-17-2003, 07:42 AM
Originally posted by kittycat
If this is an external stylesheet, take out the beginning and ending style tags.
yup, that seems to be the problem...
<LINK href="css.css" rel="stylesheet" type="text/css">
on an external style sheet, always remember to take out the STYLE tags.