Hey @Nayeli_Mixon that is an interesting effect.
Currently, we only position → sticky top and not → bottom

That means, that you would need CSS to realize this.
Before you do this, please make sure, that all containers on the website do have a background. Otherwise it would look weird ![]()
Create a CSS class :

then, please add
.sticky-footer {
position: sticky;
bottom: 0;
z-index: -1;
}
… to the CSS.
We will add this as a feature request though as this might be quite interesting for other users as well.