Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/03/2008, 17:29
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
Re: Pagina para IE 6 sin problemas

No estoy seguro de cómo va a quedar, porque las imagenes no están disponibles, pero haciendo una limpieza de tu css, que tenía bastante porquería, y añadiendo alguna cosa (como float: left; a todos los botones), yo creo que te servirá y se arreglará el problema. Si no es así ya dirás y veremos qué se puede hacer.

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>RealState Argentina</title>
<style>
* {
padding: 0px;
}
body{
font-family:Georgia, "Times New Roman", Times, serif;
font-size:16px;
}
#cabecera{
width:950px;
height:159px;
background:url(img/cabecera.jpg)no-repeat;
}
#botonera{
height:51px;
}
#boton1, #boton2, #boton3, #boton4, #boton5 {
height:51px;
float:left;
}
#boton1{
width:245px;
background:url(img/inicio1.jpg)no-repeat;
}
#boton2{
width:221px;
background:url(img/propiedades1.jpg)no-repeat;
}
#boton3{
width:137px;
background:url(img/arquitectura1.jpg)no-repeat;
}
#boton4{
width:130px;
background:url(img/trasaciones1.jpg)no-repeat;
}
#boton5{
width:217px;
background:url(img/contacto1.jpg)no-repeat;
}
#contenedor{
width:950px;
margin: 0px auto;
}
#cuerpo{
width:950px;
height:200px;;
background-image:url(img/cuerpo.jpg);
background-repeat:repeat;
}
#pie{
width:950px;
height:302px;;
background-image:url(img/pie.jpg);
background-repeat:repeat;
}
</style>
</head>
<body>
<div id="contenedor">
<div id="cabecera"></div>
<div id="botonera">
<div id="boton1"></div>
<div id="boton2"></div>
<div id="boton3"></div>
<div id="boton4"></div>
<div id="boton5"></div>
</div>
</div>
</body>
</html>
Mikel.