MyBB Community Forums

Full Version: Portal widgets right
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I place the widget on the right portal, instead of left as is default.
Is it possible?

Thanks Big Grin
Yes, you just need to edit your portal HTML.

<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>
Thanks solucioned Big Grin