Bueno posteo este tema por que estoy creando un sitio web de turismo y queria saber si ustedes me podrian decir los siguente:
- Tengo un footer el cual quiero que siempre se mantega los mas abajo posible de la pagina automaticamente.
- Tambien queria que me digan si la forma que use para insertar el footer es correcta, me refiero al fondo de footer.
El codigo css:
Código:
/* Footer */
#footer {
background-image: url(img/footer.png);
background-repeat: no-repeat;
width: 1000px;
margin: 0 0 0 0;
padding: 0 0 0 0;
}
#botonera_footer {
text-transform: capitalize;
margin: 5px 0 5px 0;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}
#footer_copy {
text-align: center;
font-family: "Courier New", Courier, monospace;
font-size: 9px;
text-transform: capitalize;
margin-bottom: 5px;
font-size: 12px;
}
.footer_c {
font-size: 15px;
}
#footer_back {
background-image: url(img/footer.png);
background-attachment: fixed;
float: right;
}
El codigo html:
Código:
<div id="footer">
<div id="botonera_footer">
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p><a href="index.html" target="_parent">Inicio</a> | <a href="aventura.html" target="_parent">Aventura</a> | <a href="el_pueblo.html" target="_parent">El Pueblo</a> | <a href="salidas.html" target="_parent">Salidas</a> | <a href="eventos.html" target="_parent">Eventos</a> | <a href="mapas.html" target="_parent">Mapas</a> | <a href="cabanas.html" target="_parent">Cabañas</a> | <a href="tarifas.html">Tarifas</a> | <a href="contacto.html" target="_parent">Contacto</a></p>
</div>
<div id="footer_copy">
<p> </p>
<p> </p>
<p>copyright <span class="footer_c">©</span> 2009 - 2010. resolucion recomendada 1024 x 768.</p>
</div>
<!-- Cierre del div footer -->
</div>
Bueno, nose si les quedo claro lo que quiero hacer. Cualquier duda preguntenme.
Gracias.