Sinisterly
Remove Down Lines & Better Post Count Display [MyBB] - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Design (https://sinister.ly/Forum-Design)
+--- Forum: Web Design (https://sinister.ly/Forum-Web-Design)
+--- Thread: Remove Down Lines & Better Post Count Display [MyBB] (/Thread-Remove-Down-Lines-Better-Post-Count-Display-MyBB)



Remove Down Lines & Better Post Count Display [MyBB] - Kyle - 11-11-2012

Small tutorial on removing those annoying lines.

Example:
[Image: d4c7923e8872fdcb52eb71da90019126.png?1352396026.png]

Just follow the tutorial below!

AdminCP > Templates > Your theme's templates > and open these two templates;
forumbit_depth1_cat
and find the following and REMOVE;
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>
With in the same template, find;
Code:
colspan="5"
and Change 5 into 3

Next, open "forumbit_depth2_forum" template and find;
Code:
</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>
and Change it into;
Code:
<div class="smalltext"> <strong>{$lang->forumbit_threads}:</strong> {$threads}{$unapproved['unapproved_threads']} <strong>{$lang->forumbit_posts}:</strong> {$posts}{$unapproved['unapproved_posts']}</div></td>

Now in: Forumdisplay Templates > forumdisplay_subforums > find the following and REMOVE;
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>
With in the same template find;
Code:
colspan="5"
Quote:and Change 5 to 3



RE: Remove Down Lines & Better Post Count Display [MyBB] - Blur - 11-11-2012

This would be nice, thanks for the suggestion, Kyle!