I tried setting up sizes different ways and none work from the footer file. If you do it straight on the source page it works.
<table> <tr> <td align="center" valign="middle" bgcolor="#666666"> <font face="Arial" color="#ffffff" size="-2"> footer text </font> </td> </tr> </table>
or
<table class="smaft"> <tr> <td align="center" valign="middle" bgcolor="#666666" class="font: Arial; font-size:.9em; color:#000000;"> footer text </td> </tr> </table>
or ....
<style type="text/css"> .smaft {font: Arial; font-size:8pt; color:#000000;} </style>
<table> <tr> <td align="center" valign="middle" bgcolor="#666666" style="smaft"> footer text </td> </tr> </table>
I have changed font size in the css to "-1" or .8em etc and nothing transfers....
Basically css are not filtered over from the file for the footer or header.
Oliver |
|
|