The page contains a table and footer. Although I use a separate font size in the #footer 6px, it's still adapting the font size of the table 13px bold. How can this be fixed?
The footer is in a separate div not inside the table.
<table width="400" border="0" style="margin: auto;"></table>
<div id="footer">Copyright 2013</div>
CSS
table { margin: auto;
font:bold 13px Helvetica, Arial, sans-serif;}
#footer {
clear: both;
font-family: Helvetica, Arial, sans-serif;
font-size: 6pt;
text-align: left;
}