I installed this as posted and a lot of the forum columns were out of alignment. I replaced this code from the mod:
HTML Code:
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$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>
with this code that was originally mine, I beleive from the index mod floris put up, that puts index headers below cat names, and it works out much nicer, however, if the last post containes 3-4 large words, whatever method is used to trim post titles doesn't work, and will knock the last post column out of alignment.
HTML Code:
<tr align="center">
<td class="thead" width="38"> </td>
<td class="thead" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="240">$vbphrase[last_post]</td>
<td class="thead" width="70">$vbphrase[threads]</td>
<td class="thead" width="70">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="120">$vbphrase[moderator]</td>
changing width="240" in this:
HTML Code:
<td class="thead" width="240">$vbphrase[last_post]</td>
to something larger would alleviate that, but your mileage may vary. I think I am going to set it to 300 and see how it goes for awhile, but I think if the function that turns "a long postname" into "a long..." to fit table widths were looked at, it would be a cleaner fix.