I don't think there's a tutorial on here for this, so since I already typed it out in response to a support question I thought I'd do a bit of copy and paste and create a new thread for the tutorials section.
The following will merge the threads and posts columns on your forum index into one column instead of two.
Tutorial
Go to ACP >> Templates & Style >> Templates >> *Your Theme* Templates
Edit the following:-
forumbit_depth1_cat
Find:
Replace with:
forumbit_depth2_cat
Find:
Replace with:
forumbit_depth2_forum
Find:
Replace with:
forumdisplay_subforums
Find:
Replace with:
I've done this from memory so if there's anything missing or not 100% accurate please let me know so I can change it.
The following will merge the threads and posts columns on your forum index into one column instead of two.
Tutorial
Go to ACP >> Templates & Style >> Templates >> *Your Theme* Templates
Edit the following:-
forumbit_depth1_cat
Find:
<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>
Replace with:
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}/{$lang->forumbit_posts}</strong></span></td>
forumbit_depth2_cat
Find:
<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>
Replace with:
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">Threads: {$threads}{$unapproved['unapproved_threads']}<br />Posts: {$posts}{$unapproved['unapproved_posts']}</td>
forumbit_depth2_forum
Find:
<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>
Replace with:
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">Threads: {$threads}{$unapproved['unapproved_threads']}<br />Posts: {$posts}{$unapproved['unapproved_posts']}</td>
forumdisplay_subforums
Find:
<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>
Replace with:
<td class="tcat" width="14%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}/{$lang->forumbit_posts}</strong></span></td>
I've done this from memory so if there's anything missing or not 100% accurate please let me know so I can change it.