Some of the categories of the board is HTML enabled. But i have a serious problem with the HTML code usage.
Code:
<table class="tborder" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td class="tcat">Test Title</td>
</tr>
<tr>
<td class="alt2">Test content</td>
</tr>
</table>
When i use a html code something like above, i get below result :
But when i se below HTML code, everthing is OK.
Code:
<table class="tborder" cellspacing="0" cellpadding="0" width="100%"><tr><td class="tcat">Test Title</td></tr><tr><td class="alt2">Test content</td></tr></table>
Is there any solution for this problem ? Is it possible to remove those blank parts from the result even if we use the 1st shown code ?
Regards