Jump to content

Lock footer a specific height above the bottom of every browser size.

Recommended Posts

Site URL: http://alexgale.co.uk/

Hi,

I'm looking to choose a specific height to lock my footer bar just above the bottom of every size of web browser. The desired distance between my footer and the bottom of my browser is perfect when viewing on my 16" Macbook pro. But when viewing on my 24" monitor the footer jumps up as well on smaller displays disappearing entirely. See attached a screen shot for both 16" Macbook Pro footer position (Green Tick) and 25" monitor position (Red Cross).

The footer is fine for the mobile version!

The issue refers to the main content of my site and not the initial landing page that last for a few seconds.

Thanks!

 

16%22 MACBOOK PRO CORRECT DISTANCE.jpg

24%22 MONITOR INCORRECT DISTANCE.jpg

Link to comment

It is a bit complex because of how that template is structured, but I think this CSS should do it. It will keep the footer at the bottom of the page.

Check all of your pages to make sure this doesn't mess anything up. I only wrote this for the main page. 

#canvas {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
}

#pageWrapper, #page {
  flex: 1;
  display: inherit;
  flex-direction: inherit;
}

#footerWrapper {
  margin-top: auto;
}

Edited by Chris.SE
spelling
Link to comment

Hi Chris,

I actually just noticed that the mobile version of the site is effected by this CSS. The footer information bar previously targeted by your code is now not visible without scrolling down on iPhone, is there anyway to avoid the mobile site being effected?

Thanks!

Alex

Link to comment

Try this:
@media screen and (min-width: 641px) {
#canvas {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
}

#pageWrapper, #page {
  flex: 1;
  display: inherit;
  flex-direction: inherit;
}

#footerWrapper {
  margin-top: auto;
 }
}

Link to comment

It looks like you have both CSS snippets I sent on your site still. 

You should only have the updated one. The updated one will only apply to screen sizes larger than mobile. I have updated the media query below. Remove everything I sent before and only paste in this snippet:

@media screen and (min-width: 801px) {
#canvas {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
}

#pageWrapper, #page {
  flex: 1;
  display: inherit;
  flex-direction: inherit;
}

#footerWrapper {
  margin-top: auto;
 }
}

Link to comment
  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.