Jogo do ache a diferença!!
Veja esse modelo de estrutura do Html,
Table 100% alinha automático a resolução do usuário
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="547" height="176" valign="top">Aqui vai o meu site </td>
</tr>
</table>
</body>
</html>
Este arquivo não vai alinhar a resoluão... descubra a diferença.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<table width="778" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="547" height="176" valign="top">Aqui vai o meu site </td>
</tr>
</table>
</body>
</html>

A Diferença na configuração na tabela está aqui (acho k jah notaram)
na primeira o código se alinha 100% com o tamanho da pag. (que é influenciado pela resolução do monitor)
<table width="100%" border="0" cellpadding="0" cellspacing="0">
aqui pede para criar a tabela com 780px, seja em k resolução o monitor veja,
<table width="780px" border="0" cellpadding="0" cellspacing="0">
esse eh o motivo das laterais brancas.
Edição feita por: Astar, 14/01/2006, 18:54.