Formatting the text in a table with CSS
Change <table>
to <table style="font-size: 13px;">
. That should change all of the text inside of the table.
Otherwise, you can just add a class or id to it and use it to style the rows as said by @user1086498.
I would add the class to the table:
<table class='myFormat'><tr>....</tr></table>
Then:
table.myFormat tr td { font-size: 13px; }
Can you tell me what browsers this is in?
Have you tried:
td { font-size: 13px }
OR
td.myfontsize { font-size: 13px ; }
then using:
class="myfontsize"
applied to your td tags?