MyBB Community Forums

Full Version: Editing Post and Thread Count in the Index Page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi everyone,

Can somebody suggest me how to edit the size and color of the font which shows the No.of Threads and Posts in the Index page.

Thanks in advance.
find code similar to below on forumbit_depth2_forum template
<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>

you can use span tag for {$threads} AND {$posts} in above code eg. <span style="color: #ff0000; font-size: 1.25em;">{$threads}</span>
Thank you very much