Hello
I found the following TOPIC about the Sticky Footer, but in the last post it says that in Bootstrap 4 have a different code.
@Norm is there a chance to create a sticky check box to stick the footer as you create in header?
There is the solution after 51 replies thanks to all for the help:
So in the code of the page you have to add the following:
<style>
.navbar-fixed-bottom {
display: block;
position: fixed;
bottom: 0;
right: 0;
left: 0;
z-index: 999;
width: 100%;
float: left;
}
.fixed-bottom {
overflow: visible;
display: block;
float: left;
margin-bottom: 0px;
padding-bottom: 0px;
z-index: 99;
}
.scrollToTop {
background-color: #F69447;
float: none;
bottom: 10px;
}
</style>
Then on the Bloc that is the Footer, just add the following classes:
navbar-fixed-bottom
fixed-bottom
I have done a last thing that was in the last bloc just before the footer, add the class:
lastbloc
And in the preferences for this class, I add in the bottom margin a padding with a value of 60px.
Hope this help summarize this topic.