If page content is short the footer can end up half way up the screen. This CSS ensures its always that the page content is always big enough for the footer to be at the bottom:

/*----- FORCE FOOTER TO ALWAYS BE AT THE BOTTOM -----*/
/* Make the body fill the viewport height and use flexbox */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Make the main content area fill the remaining space */
main {
  flex-grow: 1;
}
/* Position the footer at the bottom */
.elementor-location-footer { /* Or use the specific class of your footer */
  margin-top: auto; /* Push the footer to the bottom */
}
USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *