Click to See Complete Forum and Search --> : font face and color in tables


madman070578
04-08-2006, 01:54 PM
I have changed the font color and face throughout a HTML document - but it does not change in table cells.

The only way I can manage to do the font color and face in the cells is by putting changing each cell -

surely there must be a way to do ALL fonts throughout the total document - tables and all!

Hope someone can help!

LiLcRaZyFuZzY
04-08-2006, 02:01 PM
<style type="text/css">
body{
font-family: verdana, sans-serif;
color: #666666;
}
</style>

Fang
04-08-2006, 03:00 PM
<style type="text/css">
body, table {
font-family: verdana, sans-serif;
font-size:100%;
color: #666;
background:#fff;
}
</style>
Set the font-size in % and the background color.