How can I fix my website's footer to stay at the bottom of the page?

Hi @ArnaudB ,

Please change code: https://i.imgur.com/Vz0qqtF.png

=>

Then you change the CSS code:

body{
    display: flex !important;
    flex-direction: column;
    min-height: 100vh;
}
.main-content{
  flex: 1 0 auto;
}
.footer.footer--classic{
  flex-shrink: 0;
}

Hope it is clear to you.