MyBB Community Forums

Full Version: Move Block?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i move my portal page Block left to right
ACP > Templates > Your theme's templates > Portal Templates > portal > and Replace all code with the following;
<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">
{$announcements}
</td>
<td>&nbsp;</td>
<td valign="top" width="200">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td>
</tr>
</table>
{$footer}
</body>
</html>