Fore those looking to remove that pointless table cell above the new post images.
In the
forumhome_forumbit_level1_nopost template, find:
Code:
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar">$vbphrase[forum]</td>
<td class="thead" width="175">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
Replace with
Code:
<tr align="center">
<td class="thead" width="100%" align="$stylevar" colspan="2">$vbphrase[forum]</td>
<td class="thead" width="175">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>