Force Footer to bottom of pge

Hi,

Currently, If I create a new page and have short amount of content the footer is not at the bottom of browser window but up a bit from the bottom. Anyway to make footer always be at bottom even for short length pages?

Hey Dan,

Sorry to say but that’s not possible with our theme. The closest I can get to is via this CSS snippet.

.fl-page {
  position: relative;
  min-height: 100vh;
}
.fl-page-footer-wrap {
  width: 100%;
  position: absolute;
  bottom: 0px;
}

Or you could use a static approach, adding a minimum height to the content via the CSS snippet below.

.fl-page-content {
  min-height: 700px;
}

Hope this helps!

Ben

Thank you!

Hey Dan,

No worries! Enjoy BB! :slight_smile:

Ben