I had problems with my alignment on both the last post and also the image at the beginning, I couldn't figure out how to get them to work til I decided to add width="100%" to the
Code:
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
so as i have it below, all forums are now aligned for me.
Code:
<tr align="center">
<td class="thead" width="15"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="250">$vbphrase[last_post]</td>
<td class="thead" width="40">$vbphrase[threads]</td>
<td class="thead" width="40">$vbphrase[posts]</td>
<if condition="$vboptions[showmoderatorcolumn]">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
Keep in mind you have to have a set width for all the other columns so the 100% from this one doesn't interfere with them. Hope it works for you guys too.