Web Development Tips

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