MyBB Community Forums

Full Version: Add Block to portal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi, so i need to add a new block to my portal, i would like it in the center (were the welcome msg is now) basically i want the welcome msg to stay there and then have all the other things I post in the news section of the forum to be displayed under it. im just not sure how to go about doing so, any help would be awesome.

Screen:

[Image: 7CdmP.jpg]

Cheers
Smity
Go to: ACP > Templates > Your theme's templates > Portal Templates > portal > and search;
{$announcements}
and add the following code just BEFORE it;
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<strong>BOX NAME</strong>
</td>
</tr>
<tr>
<td class="trow1">
BOX CONTENT
</td>
</tr>
</table>
<br />