Archived topic
Stop a footer from floating up
3 replies · Started by Ivan on June 11, 2019
As described in an old post there is a problem with the footer floating up when there is less content, Is there any CSS Solution to fix this until the GP Team maybe (I hope) add this as a feature to GP.
Thanks
DEMO SITE LINK ADDED
Hi there,
What if you add this CSS:
.site-footer {
position: fixed;
right: 0;
bottom: 0;
left: 0;
}
Or try David's solution here:
https://generatepress.com/forums/topic/fixed-page-height/#post-891498
Worked thanks, is it also possible to push the site-content down to the footer?
EDIT: The solution you send me worked Thanks!
Awesome :)