Are you referring to the width's of the tables in forumhome?
Here's the code you'll need to play with:
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>
</if>
</tr>
If you have made no modifications to your category setup (so no seperation etc.) this should be in forumhome. If you have installed forum cell under categories/forum spacing, this will be in forumhome_forumbit_level1_nopost.
Look at this:
<td class="thead"
width="175">$vbphrase[last_post]</td>
The part in bold is the set width for the last post column. Play around with the number to make it either bigger or smaller. Add width="number here" to each <td> tag there to play around with the widths of those columns.