I have identical CFM file's on 2 different servers which generate a PDF.
I use a style tag like this:
<style type="text/css">
td {
font-family : Arial;
color : Black;
font-style : normal;
font-weight : normal;
font-size : 10pt;
text-decoration : none;
text-align: center;
}
th {
font-family : Arial;
color : Black;
font-style : normal;
font-weight : normal;
font-size : 10pt;
text-decoration : none;
text-align: center;
}
td.left {
font-family : Arial;
color : Black;
font-style : normal;
font-weight : normal;
font-size : 10pt;
text-decoration : none;
text-align: left;
}
th.right {
font-family : Arial;
color : Black;
font-style : normal;
font-weight : normal;
font-size : 10pt;
text-decoration : none;
text-align: left;
}
</style>
But this displays differently on separate servers. Why would the font's look different?
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<th class="right">RESERVATION : </th>
<td class="left"> </td>
</tr>
</table>
Thanks,
Steve