Tracey
11-01-2004, 08:50 PM
My CSS is not working Here (http://www.geocities.com/girl_girl_queen). This is what I put between the <head> and </head> tags.
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="style.css" type="text/css">
A:visited{color:deepskyblue;font-size:10pt;font-family:Georgia;font-style:italic;}</style>
Help
Monkey Bizzle
11-01-2004, 08:58 PM
well, you forgot the beginning style tag
it should be
<style type="text/css">
A:visited
{color: deepskyblue;
font-size: 10pt;
font-family: Georgia;
font-style: italic;}
</style>
Some tips: change the color name to an actually hex code, and why not put this in your external style sheet?
Tracey
11-01-2004, 09:12 PM
Yay! it works, I thought I didn't have to do the beginning because of the type="text/css"> tag. Thanks. What's an external style sheet I know what CSS is but not external style sheet . Is it like Cascading Style Sheet
Monkey Bizzle
11-01-2004, 09:14 PM
<link rel="stylesheet" href="style.css" type="text/css">
that tells me that you are linking to an external style sheet... why do you have that code there?
Tracey
11-01-2004, 09:18 PM
I don't really know. Somebody made my whole template and coding for me :). I just had to upload everything. I guess he thought I was going to use External Style Sheet.
Monkey Bizzle
11-01-2004, 10:45 PM
do you even have a file called "style.css?"
Tracey
11-01-2004, 11:36 PM
Yes, I don't use it though. It just has my stylesheet.
Rosey
11-02-2004, 12:16 AM
you should use it, it's a lot easier to change your layout if you use it. Just have to change a few things as opposed to all the css on each and every page.