Hola, tengo una página (www.espaciosamsara.com.uy) la cual se ve perfectamente en FF, Opera, Safari e IE7+ pero en IE6 tiene un problema que supongo es relativo a la posicion de los divs que utilicé.
El html es algo así:
<body>
<div id="containter">
<div id="main">
<h1>Próximamente</h1>
<br />
<img src="img/espacio-samsara.png" title="Espacio Samsara - Inicio" alt="Logo Espacio Samsara - Inicio" />
<p>Sitio en construcción</p>
</div>
<footer>
<span>SAMSARA - Buffet Vegetariano</span><br/>
Zabala 1316 entre Sarandí y Buenos Aires<br />
Tel.: 2915 66 06 | www.espaciosamsara.com.uy
</footer>
</div>
</body>
Y el css:
body{
height: 100%;
text-align: center;
}
div#container{
height: 100%;
margin: 0px auto;
}
div#main{
position: absolute;
bottom: 63px;
left: 0px;
top: 0px;
right: 0px;
overflow: hidden;
height: auto;
background-color: #FFFFFF;
background-image: url("../img/general-bg.jpg");
background-repeat: no-repeat;
background-position: left bottom;
}
h1{
height: 40px;
background-color: #f9c12f;
background-image: url("../img/nav-bg.jpg");
background-repeat: repeat-x;
color: #bb7c09;
font-size: 24px;
text-shadow: 1px 1px 0px #ffffff;
}
footer{
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
font-size: 14px;
text-align: left;
padding-left: 10px;
color: #ffffff;
background-color:#999999;
}
footer span{
font-size: 14px;
color:#ffdf17;
background-color: transparent;
background-image: none;
}
Estoy muy tentado a no tomar en cuenta a IE6, pero me gustaría resolver esto ya que hay un porcentaje no despreciable de gente que lamentablemente todavia usa IE6.
Desde ya muchas gracias a quienes puedan ayudar :D
El html es algo así:
<body>
<div id="containter">
<div id="main">
<h1>Próximamente</h1>
<br />
<img src="img/espacio-samsara.png" title="Espacio Samsara - Inicio" alt="Logo Espacio Samsara - Inicio" />
<p>Sitio en construcción</p>
</div>
<footer>
<span>SAMSARA - Buffet Vegetariano</span><br/>
Zabala 1316 entre Sarandí y Buenos Aires<br />
Tel.: 2915 66 06 | www.espaciosamsara.com.uy
</footer>
</div>
</body>
Y el css:
body{
height: 100%;
text-align: center;
}
div#container{
height: 100%;
margin: 0px auto;
}
div#main{
position: absolute;
bottom: 63px;
left: 0px;
top: 0px;
right: 0px;
overflow: hidden;
height: auto;
background-color: #FFFFFF;
background-image: url("../img/general-bg.jpg");
background-repeat: no-repeat;
background-position: left bottom;
}
h1{
height: 40px;
background-color: #f9c12f;
background-image: url("../img/nav-bg.jpg");
background-repeat: repeat-x;
color: #bb7c09;
font-size: 24px;
text-shadow: 1px 1px 0px #ffffff;
}
footer{
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
font-size: 14px;
text-align: left;
padding-left: 10px;
color: #ffffff;
background-color:#999999;
}
footer span{
font-size: 14px;
color:#ffdf17;
background-color: transparent;
background-image: none;
}
Estoy muy tentado a no tomar en cuenta a IE6, pero me gustaría resolver esto ya que hay un porcentaje no despreciable de gente que lamentablemente todavia usa IE6.
Desde ya muchas gracias a quienes puedan ayudar :D