Pero como no.
El body del index.php (que es donde manejo todo el sitio) es esto:
Código HTML:
<body onLoad="load()" onResize="resize()">
<div>
<input id="ContentUrl" type="hidden" value="">
<input id="PageId" type="hidden" value="-1">
<div id="tope"></div>
<div id="fijo">
<div align="center" id="header"><? require_once("header.php") ?></div>
<div id="menu"><? require_once("menu.php") ?></div>
<div id="title" style="display: none; height: 0;"><? require_once("title.php") ?></div>
</div>
<div align="center" id="footer"><div id="footerIn"><? require_once("footer.php")?></div></div>
<div id="content"><div id="contentIn"><? require_once(GetPagePath($pageid))?></div></div>
</div>
</body>
Y el CSS es el siguiente:
Código:
* {
margin: 0;
padding: 0;
}
html, body {
background-color: #FFF;
height: 100%;
overflow: hidden;
width: 100%;
}
#botonPermisos {
cursor: hand;
vertical-align: top;
}
#content {
left: 0;
overflow: auto;
top: 0;
width: 100%;
z-index: 1;
}
#contentIn {
margin:0 auto;
width: 768px;
}
#fechaHomePage {
color: #8C8C8C;
font-family: Verdana;
font-size: 10px;
left: 330px;
position: absolute;
}
#fijo {
height: 108px;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 0;
}
#footer {
bottom: 0;
height: 32px;
position: absolute;
width: 100%;
z-index: 5;
}
#footerIn {
margin:0 auto;
width: 768px;
}
#header {
background: #E7E7E7;
height: 54px;
left: 0;
top: 0;
width: 100%;
z-index: 2;
}
#imagen1HomePage {
vertical-align: top;
}
#menu {
background: #FFF;
height: 40px;
left: 0;
top: 54px;
width: 100%;
z-index: 3;
}
#title {
left: 0;
top: 108px;
width: 100%;
z-index: 3;
}
#tope {
height: 96px;
top: 0;
}