Site logo

Archived topic

how to lower the footer?

3 replies · Started by Anton Samarin on April 8, 2020

Viewing posts 1–4 of 4

Please advise, how can I lower the footer to make it stick to the bottom of the page https://prnt.sc/rv9cf8

Hi there,

its kinda tricky to do that, you can try this CSS:

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

body .grid-container {
    width: 100%;
    box-sizing: border-box;
}

.container {
    flex: 1 0 auto;
}

Hi,

Sadly his line of code isn't quite working as content above footer gets into center of page and squeezed together. The width of page content is same as content in footer: https://imgur.com/ZKFDE80

Is there anyway to do this otherwise?

Regards

Hi there,

theres no simple fix to this - if you can add the code and link me to a page where i can see the problem i may be able to help fix that.

This archived topic is closed to new replies.