How would one go about forcing the footer to 'hug' the bottom of the page if the content does not fill the page?
I've tried all sorts of combinations of 100% height/max-height div's but cannot get the footer to play ball...
Site: moorparksdevon.uk
How would one go about forcing the footer to 'hug' the bottom of the page if the content does not fill the page?
I've tried all sorts of combinations of 100% height/max-height div's but cannot get the footer to play ball...
Site: moorparksdevon.uk
as you are using twitter-bootstrap this can be one solution. Add the following to your footer div--- <div class="footer navbar-fixed-bottom">
Also add this css to your page---
html,body{
height: 100%
}
Above points can solve your problem keeping in mind you can't provide your whole code.