Log in

View Full Version : Moving Category Strip


mshadows
08-17-2006, 01:37 AM
Okay I tried searching the forums for a resolution but had no luck, so it would be great if somebody could help me with this.

Basically I just want to swap the category strip with the strip above it that says 'forum', 'last post', etc. I'm new to modding vB and have no idea how to do this. Any help would be greatly appreciated.

peterska2
08-17-2006, 01:47 AM
In your FORUMHOME template find and delete<tr align="center">
<td class="thead">&nbsp;</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>

Then in your forumhome_forumbit_level1_nopost template, find</tbody>and add above<tr align="center">
<td class="thead">&nbsp;</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>