09-30-2008, 07:26 PM
This lil tutorial will show you how to change your "Last Post" and "Post" and "Threads" columns around to be styled like vBulletin.
Preview:
![[Image: lastpostcolumnfr2.th.jpg]](http://img378.imageshack.us/img378/7686/lastpostcolumnfr2.th.jpg)
Open up your Forum Bit Templates > forumbit_depth1_cat template.
Now find:
And replace with:
Now open your Forum Bit Templates > forumbit_depth2_forum template.
And find:
And replace with:
Now open your Forum Display Templates > forumdisplay_subforums template.
And find:
And replace with:
Now you have vBulletin styled columns for MyBB!
Preview:
![[Image: lastpostcolumnfr2.th.jpg]](http://img378.imageshack.us/img378/7686/lastpostcolumnfr2.th.jpg)
Open up your Forum Bit Templates > forumbit_depth1_cat template.
Now find:
Code:
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>
<td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>And replace with:
Code:
<td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>Now open your Forum Bit Templates > forumbit_depth2_forum template.
And find:
Code:
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>And replace with:
Code:
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>Now open your Forum Display Templates > forumdisplay_subforums template.
And find:
Code:
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>
<td class="tcat" width="15%" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>And replace with:
Code:
<td class="tcat" width="15%" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>Now you have vBulletin styled columns for MyBB!
