Reply To: Stick the footer to the bottom of the page

#10000394
Support
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.