Estoy trabajando con un archivo maestro, tengo varios includes, pero cuando hago include de solo imagenes estas se muestran pero se descuadran en la pantalla, es decir se ven movidas, si transfiero el codigo desde el archivo incluido la pagina se muestra bien. No se cual puede ser el problema. ???
(SE MUESTRA UN ESPACIO ENTRE EL HEADER Y LA BARRA DE MENU CUANDO DEBERIAN ESTAR LOS DOS JUNTOS )
CODIGO BUENO
<table cellpadding="0" cellspacing="0">
<tr>
<td style="width:970px; height: 150px; ">
<img alt="" src="Img/ImagesZonaGPeru/ZonaGPeru_Header_1.jpg" height="150" width="970" />
</td>
</tr>
<tr>
<td style="height: 30px; width: 970px; padding:-5px 0px 0px 0px">
<img alt="" src="Img/ImagesZonaGPeru/BarraMenu.jpg" height="30" width="970" />
</td>
</tr>
</table>
CODIGO MALO
<table cellpadding="0" cellspacing="0">
<tr>
<td style="width:970px; height: 150px; ">
<?php include('header.php'); ?>
</td>
</tr>
<tr>
<td style="height: 30px; width: 970px; padding:-5px 0px 0px 0px">
<?php include('topmenu.php'); ?>
</td>
</tr>
</table>
ARCHIVO HEADER.PHP
<?php
echo "<img src='Img/ImagesZonaGPeru/ZonaGPeru_Header_1.jpg' width='970' height='150' />";
?>
ARCHIVO TOPMENU.PHP
<?php
echo "<img src='Img/ImagesZonaGPeru/BarraMenu.jpg' height='30' width='970' />";
?>
Gracias de antemano a las personas que puedan ayudarme.
Saludos