2012-10-07, 06:51 AM
2012-10-07, 06:58 AM
Can you post your portal template here?
2012-10-07, 07:25 AM
<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> </td>
<td valign="top">
{$announcements}
{$boardstats}
</td>
</tr>
</table>
{$ps_footer_portal}
{$boardstats}
{$footer}
</body>
</html>
2012-10-07, 07:41 AM
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> </td>
<td valign="top" width="200">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td>
</tr>
</table>
{$ps_footer_portal}
{$boardstats}
{$footer}
</body>
</html>