MyBB Community Forums

Full Version: The black bar thingy.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Quote:Forum
Threads
Posts
Last Post


This this stuff, above
{$lang->forumbit_threads}
 How do I remove that bar entirely? I'm gonna merge it with the other bar with top of it but I can't fix where the Threads and posts text is from, I thought it was from
{$lang->forumbit_forum}
but alas I seem to be wrong.
You mean the tcat below the thead?

It's in Templates > your theme > Forum Bit Templates > forumbit_depth1_cat

<tr>
<td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->forumbit_forum}</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>
<td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</tr>

I don't recommend to remove this kind of bars because some have additional functions, like the rating of the threads.

It's better if you hide the content, like this:

<tr style="display: none;">

Greetings.
I have all the contents displaying elsewhere at this point. Cheers.