hello i want to remove the 2 cells on the sides of the boxes

this is the code the page generates:

<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td height="14" class="infoBoxHeading"><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="1"></td>
<td width="100%" height="14" class="infoBoxHeading">Categories</td>
<td height="14" class="infoBoxHeading" nowrap><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="1"></td>
</tr>
</table>

I want to remove this:

<td height="14" class="infoBoxHeading"><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="1"></td>

and this:

<td height="14" class="infoBoxHeading" nowrap><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="1"></td>

help!

i want my infoboxes to look like this:

<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" height="14" class="infoBoxHeading">Categories</td>
</tr>
</table>