Well, with the post and threads display, that will always keep it small; I recommend just getting rid of this post and thread count which will make the last post table much larger.
A working demo is here:
http://www.communityforums.net/forum...php?styleid=28
This explaination will get rid of the thread and post count tables in the forum home page (index.php)
Get rid of the thread count and reply count by doing this:
1.
Open the admin CP and go to the template editor of which style is having the problem
2.
open forumhome and find this
PHP Code:
<!-- / guest welcome message -->
<br>
</if>
<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>
</thead>
replace with this code
PHP Code:
<!-- / guest welcome message -->
<br>
</if>
<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>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
</thead>
Now, open forumhome_forumbit_level1_post and find
PHP Code:
<td class="alt1">$forum[threadcount]</td>
<td class="alt2">$forum[replycount]</td>
delete this
open forumhome_forumbit_level2_post and find this code
PHP Code:
<td class="alt1">$forum[threadcount]</td>
<td class="alt2">$forum[replycount]</td>
delete this code
You're now done!
Hope this helped.