Footer at the bottom of page Oxygen Builder
Author: Aleš Sýkora, 2. 12. 2020
If you need to push your footer section to the bottom (for responsive design) use this in your custom CSS in Oxygen Builder.
body {
min-height: 100vh;
min-height: -webkit-fill-available;
display: flex;
flex-direction: column
}
html {
height: -webkit-fill-available;
}
footer {
margin-top:auto;
}