Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/07/2008, 12:51
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Respuesta: (Ayuda) 3 problemas visibles

Mira a ver si lo que quieres hacer se parece en algo a esto:

Cita:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Bienvenidos al VENI</title>
</head>
<style type="text/css">
* {padding:0;
margin:0;
outline:0;
}
html, body { height:100%;
font-family:Calibri;
font-size:1em;
outline:0;
background-image:url(img/fondo.jpg);
background-repeat:repeat-x;
}
#header{position: relative;top: 84px;
margin: auto;text-align: center;
}
#content
{
min-height:40%;
height:auto;
width:100%;
margin-top:100px;
text-align:center;
}
#sidebar-left {float:left;
width:25%;
border-right:2px dotted #808080;
}
#sidebar-center {float: left;
width:50%;
}
#sidebar-right {}
#footer {font-size:2em;
text-align: center;
width:100%;
border-top:2px solid #000000;
}
.corte {clear: both;}
</style>
<body>
<div id="header"><img src="imagenes/header.png" /></div>
<div id="content">
<div id="sidebar-left"><?php include('http://www.nutrimel.com.ar/veni/includes/sidebar-left.php'); ?></div>
<div id="sidebar-center">SIDEBAR-CENTER</div>
<div id="sidebar-right"> SIDEBAR-RIGHT</div>
<div class="corte"></div>
</div>
<div id="footer">Pie de Pagina</div>
</body>
</html>
Mikel.