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]](https://camo.mybb.com/284d9e79801316ea73ebace2ce79e84b4d67c9d2/68747470733a2f2f6779617a6f2e636f6d2f35663161303233343930656534633965613361613430346434373866643130302e676966)
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..