Si amigo, asi es cuando hago F12 para ver la página no pasa "naranja", voy a mandar código para que lo revisen ayer lo mandé mal.
La verdad es que no se quien es el que me hace problemas si IE7 o DW.
Gracias a todos los que me dan una mano! Pablo
Código :
/* CSS Document */
*
{
margin:0;
}
body
{
text-align:center;
}
div#encabezado
{
margin:0 auto 0 auto;
width: 790px;
height:220px;
background-image: url("Images/Cabecerapagina.png");
background-repeat:no-repeat;
border-bottom-width: thin;
}
#cuerpo
{
margin:0 auto 0 auto;
width:790px;
background-image: url("Images/Cuerpopagina.png");
background-repeat:repeat-y; /*Esto es para que se repita en forma vertical*/
}
div#pie
{
margin:0 auto 0 auto;
width:790px;
height:115px;
background-image: url("Images/Piepagina.png");
background-repeat:no-repeat;
}
Código :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Pagina Estructural</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="Estructura.css" rel="stylesheet" type="text/css" media="screen"/>
</head>
<body>
<div id="encabezado"></div>
<div class="cuerpo">
<p>Aqui pones toda la información que quieras </p>
<p>ALGO MAS</p>
<p>UN POCO DE ALGO MAS</p>
<p></p>
</div>
<div id="pie"></div>
</body>
</html>