Page 2 of 2

Re: Sticky Footer

Posted: 01 Jul 2019, 19:05
by heather_p
Babas007 wrote:
22 May 2018, 17:02
I saw that post, and I had to reply since I had the same problem with Barcelona...

You can try this: https://css-tricks.com/couple-takes-sticky-footer/
From this article, his example using calc() worked well for me, using California theme. Here is how I used it:

Code: Select all

.layout-main-content {
  min-height: calc(100vh - 50px);
}
.layout-footer {
  min-height: 70px;
}

Re: Sticky Footer

Posted: 08 Jul 2019, 09:56
by mert.sincan
Good suggestion ;)