March 14, 2014 at 10:59 am
#10000394
Keymaster
Hello, if you want to make the footer fixed at the bottom for pages with small content here’s what you can do:
Add this to the file css/custom.css:
html, body {
height: 100%;
width: 100%;
}
div.body {
display: table;
height: 100%;
width: 100%;
}
header, div.main {
display: table-row;
}
div.main {
height: 100%;
}
div.main > .container {
display: table;
height: 100%;
}
Thanks.