MyBB Community Forums

Full Version: How do i add a box?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I was wondering how i add another box like the ones where the stats etc are contained on my index.php just to put down a few notes etc. thanks!
ACP >> Templates & Style >> Templates >> Index Templates >> index

Find:
{$boardstats}

Add after:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr><td class="thead"><strong>Notes</strong></td></tr>
<tr><td class="tcat"><span class="smalltext"><strong>Here's some notes...</strong></span></td></tr>
<tr><td class="trow1">****** Not much to see here, no one wrote any notes yet!!! ******</td></tr>
</table>
<br />

Result:
[attachment=20195]
Thank you AJS, Which template do i edit if i want it at the top of the forum?
Add it above {$forums} in the index template if you just want it on the index, add it to the header template if you want it on every page.