Try wrapping your bulk of home.tpl in a fixed width table that is centered like so.
Code:
<body LEFTMARGIN=0 TOPMARGIN=0 RIGHTMARGIN=0 BOTTOMMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
{ include file="rectangle_top.tpl" }
{ include file="head.tpl" }
becomes
Code:
<body LEFTMARGIN=0 TOPMARGIN=0 RIGHTMARGIN=0 BOTTOMMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
<table width="750" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td>{ include file="rectangle_top.tpl" }
{ include file="head.tpl" }
and at the bottom
Code:
{ include file="poweredby.tpl" }
</td>
<td width=6></td>
</tr>
</table>
{ include file="rectangle_bottom.tpl" }
</body>
</html>
becomes
Code:
{ include file="poweredby.tpl" }
</td>
<td width=6></td>
</tr>
</table>
{ include file="rectangle_bottom.tpl" }</td>
</tr>
</table>
</body>
</html>
and that forum signature needs a version #!
