Archived topic
Footer at the bottom
1 reply · Started by Karol Öman on March 20, 2023
Viewing posts 1–2 of 2
Hey, how can I fix so my footer stays at the bottom?
Hi there,
the simplest solution is to edit any page where it is too short to fill the screen, and add some extra padding.
Otherwise you can use some CSS:
html {
height: 100%;
}
body {
display: flex;
flex-direction: column;
height: 100%;
}
.site-footer {
margin-top: auto;
}
But i would recommend you use the first method
This archived topic is closed to new replies.