View Single Post
  #4  
Old 07-05-2004, 03:10 AM
  adpboss's Avatar 
adpboss adpboss is offline
 

X-Man
  
Join Date: Feb 2003
Location: Ontario, Canada
Posts: 2,389
 

Default

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 #!
Reply With Quote