MyBB Community Forums

Full Version: Move Portal Sideboxes from Right to Left
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, how is it possible to move the portal sideboxes from your right
to the left side of the portal.

[Image: GKZnqX.png]

This site:
www.postspawn.com
Can you post your portal template here? Smile
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
{$ps_header_portal}
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td valign="top" width="200">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td>
<td>&nbsp;</td>
<td valign="top">
{$announcements}
{$boardstats}
</td>
</tr>
</table>
{$ps_footer_portal}
{$boardstats}
{$footer}
</body>
</html>
Try this;

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