La forma mas fácil de arreglarlo sería hacer poner un contenedor div fuera de tu tabla:
Código HTML:
Ver original <table id="Tabla_01" width="1024" height="768" border="0" cellpadding="0" cellspacing="0"> <td><img src="http://www.forosdelweb.com/f17/images/index_01.gif" width="1024" height="178" alt=""></td> <td><img src="http://www.forosdelweb.com/f17/images/index_02.gif" alt="" width="1024" height="61" border="0" usemap="#Map"></td> <td><img src="http://www.forosdelweb.com/f17/images/index_03.gif" width="1024" height="529" alt=""></td>
Le he puesto la clase de
contenedor para poder añadirle CSS. Ahora en tu CSS puedes agregar esta nueva regla:
Código CSS:
Ver original.contenedor{
width:1024 px;
margin:0 auto;
position:relative;
}
Una vez hagas esto podrás acomodar el layer donde quieras. Como te dije arriba, no uses la vista de diseño de DW, usa un navegador o varios como referencia.
Espero que te funcione.