Web Development Tips
Pinning Footer to Bottom of Page (Bootstrap Studio)
Some Bootstrap Studio themes don’t pin the footer to the bottom. Fix with custom sitewide CSS:
body {
display: flex;
flex-direction: column;
height: 100vh;
}
footer {
margin-top: auto;
}Source: Bootstrap Studio forum