![]() |
|
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: ![]() 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>Code: colspan="5"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>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>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! |