Forum Moderators: not2easy
<style type="text/css">
body,td,th {
font-family: Verdana;
font-size: 5px;
color: #666666;
font-weight: bold;
}
</style>
Ive tried attaching a style sheet & still no luck. Any help would be greatly appreciated.
Thanks :)
I tried this code first
<style type="text/css">
* html,body,td,th {
font-family: Verdana;
font-size: 5px;
color: #666666;
font-weight: bold;
}
</style>
which had no effect. And then I tried this code
<style type="text/css">
* { }
td, th {
font-family: Verdana;
font-size: 5px;
color: #666666;
font-weight: bold;
}
</style>
which changed the font in all browsers to Arial displayed in black and alterations to font, size etc have no effect.
So it seems this code isnt working :(
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title></title>
<style type="text/css">
body,td,th {
font-family: Verdana;
font-size: 5px;
color: #666666;
font-weight: bold;
}
</style>
</head>
[edited by: TheWebMistress at 3:03 pm (utc) on May 11, 2009]