02-12-2006, 06:14 AM
|
|
|
Confirmed User
Join Date: Jun 2004
Posts: 689
|
CSS Help
This stylesheet works when I have it directly on the webpage, however if I save it as a .css and link it some tags doesn't work, like the font-family body tag.
Any ideas why not?
Quote:
<style type="text/css">
body,td,th {font-size: 12px; color: #000000;}
body {margin-top: 0px; background-color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; }
.topads {font-size: 16px; color: #FFFFFF; font-weight: bold; font-family: Arial, Helvetica, sans-serif;}
.whitebold {color: #FFFFFF; font-weight: bold; }
.blackbold {color: #000000; font-weight: bold; }
.smallheading {font-size: 16px; color: #000000; font-weight: bold; font-family: Arial, Helvetica, sans-serif; }
.normal {font-family: Verdana, Arial, Helvetica, sans-serif; }
a:link {
text-decoration: underline;
color: #0000FF;
}
a:visited {
text-decoration: underline;
color: #0000FF;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: underline;
}
</style>
|
|
|
|