Revealing Footer - Sticky Footer with Reveal Effect

Hey @Nayeli_Mixon that is an interesting effect.

Currently, we only position → sticky top and not → bottom

grafik

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 :smiley:

Create a CSS class :

grafik

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.