im triyng to undesrtand where im making the mistake on this code, but i cant, works fine on firefox and ie, but in chrome the inner cells are not centered like the code seems to do.
<table cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td rowspan="7"></td>
<td style="width: 600px; height: 100px;"> </td>
<td rowspan="7"></td>
</tr>
<tr>
<td class="style1" valign="top"><?php echo($title); ?></td>
</tr>
<tr>
<td class="style2" valign="top"><?php echo($subtitle); ?></td>
</tr>
<tr>
<td class="style3" valign="top"><?php echo($content); ?></td>
</tr>
<tr>
<td class="style4"><?php echo($endtitle); ?></td>
</tr>
<tr>
<td style="width: 600px; height: 30px"></td>
</tr>
<tr>
<td style="width: 600px; height: 100px" class="style5" valign="top"></td>
</tr>
</table>
Style1 and 2 and so are simple as:
.style1 {
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 32px;
color: #2B2B2B;
width: 600px;
}
With only some fonts diferents
The firts image shows how google chrome renders it, and the second how firefox do it:
