Help Me Please

topranger

New Member
ok i was goin through all this forum n i wann to know how can i put the Latest Threads And New Posts in Right Side Bar....Please Help if u have code plz reply n give it to me pleasee need it urgent thanks..
 
Remember always make a back up!


In forumhome_forumbit_level1_nopost find and re-arrange these lines:
PHP:
<td class="thead" width="35">&nbsp;</td>
<td class="thead" align="$stylevar[align=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>

In forumhome_forumbit_level1_post find and re-arrange these lines:
PHP:
<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>

In forumhome_forumbit_level2_post find and re-arrange these lines:
PHP:
<td class="alt2" width="175" nowrap="nowrap">$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]&nbsp;</div></td>
</if>

Obviously make sure the are re-arranged the same.
 
Back
Top