View Single Post
.CSS Style sheets
Old
  (#1)
Poseidon is Offline
2nd Lieutenant
 
Posts: 3,358
Join Date: Jul 2003
Location: Good ol' England!
   
Default .CSS Style sheets - 12-18-2004, 05:16 AM

Not sure if you know much about .css files, but i'm doing HTML at college and part of a assignment is to integrate a .css style sheet into my website.

I've got my css file to work but i have a few tables in the website and the styling of the text doesnt seem to be changing inside these tables... but is working for everything out of the tables.

Is there something else i need to add?

This is what i have in my css file:

[code:278e9]
body {
background-color: #769FA6;
Font-size: 12;
color: #EAF8F8;
font-family: Verdana, Geneva, Arial, sans-serif;
}

a:link {
color: #EAF8F8;
}

a:visited {
color: #EAF8F8;
}[/code:278e9]

This is the code in the website retriving the css file information:
[code:278e9]<link rel="stylesheet" type="text/css" href="cssfile.css">[/code:278e9]
This is placed in the head part of my site.

Anyone got any ideas?
  
Reply With Quote