View Full Version : Not showing up...


BrandNewDE
05-05-2005, 09:22 PM
This same problem has happened with me before, and for some reason I can't seem to figure out why the CSS won't show up.

This is the code:

A:link
{ text-decoration: value; none color:#FF0000; }
A:visited
{ text-decoration: value; none color:#960000; }
A:active
{ text-decoration: value; none color:#FF0000; }
A:hover
{ text-decoration: value; none color:#28ADFF;
background-color: #FFFFFF;}

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

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

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

and I'm using this to link it:
<LINK href="http://www.freewebs.com/felicific/redblack.css" rel="stylesheet" type="text/css">

I've had it under the title, above the title, I've removed the beginning and ending tags to the CSS...and nothing has made it change. Any help?

niya429
05-05-2005, 09:36 PM
Um, you might want to remove 'value'.

i.e.

A:link
{ text-decoration: none; color:#FF0000; }
A:visited
{ text-decoration: none; color:#960000; }
A:active
{ text-decoration: none; color:#FF0000; }
A:hover
{ text-decoration: none; color:#28ADFF; background-color: #FFFFFF;}

h1 {font-family: verdana;
color: #000000; }

p {font-family: verdana;
color: #000000; }

phate04
05-07-2005, 04:41 PM
You're trying to change the color of the links? Use this script:

<style>
a:link{color:FF0000}
a:visited{color:960000}
a:hover{color:28adff}
</style>
But that in your <head>, and then any <a href="Yoursite.com">Click</a> will show the new colors.

Hope that helps