Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/01/2015, 13:42
Avatar de GekoDH
GekoDH
 
Fecha de Ingreso: diciembre-2014
Ubicación: Ourense
Mensajes: 58
Antigüedad: 9 años, 11 meses
Puntos: 0
Respuesta: No consigo que el contenido empuje hacia abajo mi sticky footer.

Ya lo he solucionado, ¿como? pues usando un sticky footer bien diseñado en vez de la chapucilla que me había montado yo:

Código:
* {
  margin: 0;
}
html, body {
  height: 100%;
}
#wrapper {
  min-height: 100%;
  margin-bottom: -142px; /* equal to footer height */
}
#wrapper:after {
  content: "";
  display: block;
}
#footer, #wrapper:after {
  height: 142px; 
}
#footer {
  background: orange;
}
Gracias a todos.