MyBB Community Forums

Full Version: Moving Birthdays
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to move the birthdays right next to the board statistics ? since theres a lot of space on its right the birthdays category can fit in there.

[Image: 5f1a023490ee4c9ea3aa404d478fd100.gif]
basically you need to add a new cell to the board stats template and then adjust the colspan for all other table in the stats section..

ACP >> Templates >> Your Theme's Templates >> Index Page Templates >> index_stats

replace the content as below...

<tr><td colspan=2 class="tcat"><span class="smalltext"><strong>{$lang->boardstats}</strong></span></td></tr>
<tr>
<td class="trow1"><span class="smalltext">
{$lang->stats_posts_threads}<br />
{$lang->stats_numusers}<br />
{$lang->stats_newestuser}<br />
{$lang->stats_mostonline}
</span>
</td>
<td class="trow1">{$birthdays}</td>
</tr>


then in index_boardstats template and index_whosonline template add "colspan=2" for the corresponding td to adjust them... you can share those templates here, if you are not sure about the edits..