You're missing the opening and closing <tr> tags around your
HTML Code:
<td class="tcat2">some stuff here</td>
Try replacing it with this:
HTML Code:
<table cellpadding="$stylevar[outerborderwidth]" cellspacing="0" border="0" class="tborder" width="$stylevar[tablewidth]" align="center">
<tr>
<td>
<table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" style="width:100%">
<tr align="center">
<td class="tcat2"><span class="smallfont"><b>My Content</b></span></td>
</tr>
<tr>
<td class="tcat2">some stuff here</td>
</tr>
</table>
</td>
</tr>
</table>
<br />