Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/02/2009, 12:01
Avatar de alapaco
alapaco
 
Fecha de Ingreso: septiembre-2003
Ubicación: Caballito - Buenos Aires - Argentina - América del Sur - Planeta Tierra - Sistema Solar - Vía Láctea
Mensajes: 216
Antigüedad: 20 años, 8 meses
Puntos: 5
Respuesta: Scrollbar sobre parte de una página

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;
}
__________________
__________________
Álvaro Lapacó