here, this was corrected by me to include the if statement and allow for correct alignment if the moderator column is on or off. Also because it uses percentages instead of hard coded values it will maintain its ratio no matter what the users resolution.
Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr align="center">
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="5%"> </td>
<td class="thead" width="55%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="20%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%">$vbphrase[posts]</td>
<td class="thead" width="10%">$vbphrase[moderator]</td>
<else />
<td class="thead" width="5%"> </td>
<td class="thead" width="60%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="25%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%">$vbphrase[posts]</td>
</if>
</tr>
$forumbits
<tbody>
<tr>
<td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><div class="smallfont"><strong> </strong></div></td>
</tr>
</tbody>
</table>