MyBB Community Forums

Full Version: move the forum bar on top of category
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Does anyone know how to move that bar (says forum, threads, posts, last post) under the category title to make it on top of the category title?
Yeh, go to your template set > forumbit_depth1_cat

Find:
<tr>
<td class="tcat" width="35"> </td>
<td class="tcat"><strong>{$lang->forumbit_forum}</strong></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><strong>{$lang->forumbit_threads}</strong></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><strong>{$lang->forumbit_posts}</strong></td>
<td class="tcat" width="200" align="center"><strong>{$lang->forumbit_lastpost}</strong></td>
</tr>

Copy and paste it right above this piece of coding:
<tr>
<td class="thead" colspan="5">
<div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" /></div>
<div><strong><a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>
</td>
</tr>

Now if you want the default vB type of style where there is only one of the "tcat" rows with the forum, threads, posts, threads, last post thing, you will need to edit more templates.
what else do i need to edit?
BUMP...WHAT ELSE DO I NEED TO EDIT?
That's the only thing you need to edit =/
If you use the vB crap, contact to author of that theme ...
Audentio Wrote:Now if you want the default vB type of style where there is only one of the "tcat" rows with the forum, threads, posts, threads, last post thing, you will need to edit more templates.
Big Grin

What else do I need to edit?
krazygamers Wrote:
Audentio Wrote:Now if you want the default vB type of style where there is only one of the "tcat" rows with the forum, threads, posts, threads, last post thing, you will need to edit more templates.
Big Grin

What else do I need to edit?

LeX- Wrote:If you use the vB crap, contact to author of that theme ...

I aint gonna install a useless theme just for helping you out.
Dude, I am asking Audentio
krazygamers Wrote:Dude, I am asking Audentio

Ever heard of self exploring ?
You will need to take that piece of coding I gave you, delete it from the forumbit template, and add it above the $forumbits on the index page, as well as the table to get that one bordered table. Finally, delete the <br /> in the forumbits. I can write up a tutorial later, right now Im too busy. Remind me if you still cant do it.

And always remember, free things require patience.
Pages: 1 2