ok już sobie poradziłem
w szablonie forumhome_forumbit_level1_nopost zamiast:
Kod:
<tr align="center">
<td class="thead" width="35"> </td>
<td class="thead" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="175">$vbphrase[last_post]</td>
<td class="thead" width="65">$vbphrase[threads]</td>
<td class="thead" width="65">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="120">$vbphrase[moderator]</td>
</if>
</tr>
trzeba dać :
Kod:
<tr align="center">
<td class="thead" width="5%"> </td>
<td class="thead" width="39%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="26%">$vbphrase[last_post]</td>
<td class="thead" width="7%">$vbphrase[threads]</td>
<td class="thead" width="7%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="16%">$vbphrase[moderator]</td>
</if>
</tr>
i w szablonie forumhome_forumbit_level2_post zamienic:
Kod:
<td class="alt2" width="175">$forum[lastpostinfo]</td>
<td class="alt1" width="65">$forum[threadcount]</td>
<td class="alt2" width="65">$forum[replycount]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="alt1" width="120"><div class="smallfont">$forum[moderators] </div></td>
</if>
na :
Kod:
<td class="alt2">$forum[lastpostinfo]</td>
<td class="alt1">$forum[threadcount]</td>
<td class="alt2">$forum[replycount]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="alt1"><div class="smallfont">$forum[moderators] </div></td>
</if>