MyBB Community Forums

Full Version: Portal Sideboxes...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I change the location of the portal side boxes?
I want to add some in the right side of it..

Thank you.
(2010-01-14, 03:42 PM)Skiilz Wrote: [ -> ]How do I change the location of the portal side boxes?
I want to add some in the right side of it..

Thank you.

Find the Portal template and replace everything in there with this:

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td valign="top" width="200">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
</td>
<td>&nbsp;</td>
<td valign="top">
{$announcements}
</td>
<td>&nbsp;</td>
<td valign="top" width="200">
{$latestthreads}
</td>
</tr>
</table>
{$footer}
</body>
</html>

I moved the latest posts on the right but you can rearrange the blocks how you want. The end result can be seen at the attached screenshot below.
Or for a safer and more effective way that doesn't take crazy edits to default templates (making it have to be redone with every upgrade that affects said template)....

SCD Side Boxes
Thank you babjusi.
Worked like a charm.
No problem, glad to have been of help.
(2010-01-14, 04:28 PM)ralgith Wrote: [ -> ]Or for a safer and more effective way that doesn't take crazy edits to default templates (making it have to be redone with every upgrade that affects said template)....

SCD Side Boxes
Its paid... I can do the changes without paying for it.