Replys before thread name

In:
"forumhome_forumbit_level2_post" temlate
search for:

PHP:
</td>
	<td class="alt2" nowrap="nowrap">$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]&nbsp;</div></td>
	</if>

and replace with:
PHP:
</td>
             <td class="alt2">$forum[threadcount]</td>
	<td class="alt1" nowrap="nowrap">$forum[lastpostinfo]</td>
	<td class="alt2">$forum[replycount]</td>
	<if condition="$vboptions['showmoderatorcolumn']">
	<td class="alt1"><div class="smallfont">$forum[moderators]&nbsp;</div></td>
	</if>

you can also play about with the single lines

<td class="alt2">$forum[threadcount]</td>
notice what I have highlighted
 
Back
Top