How can I create a sticky footer in Soledad? As you can see on my home page, my sections are sticky to bottom with the z-indexes from high to low so that sections are revealed under other sections on scroll. How can I make the last section reveal the footer?
Hi,
How can I create a sticky footer in Soledad? As you can see on my home page, my sections are sticky to bottom with the z-indexes from high to low so that sections are revealed under other sections on scroll. How can I make the last section reveal the footer?
Thank you.
Hi,
Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:
@media only screen and (min-width: 1170px) {
body {
padding-bottom: 186px;
}
#footer-section {
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
}
Note the code above displays the footer as sticky on the desktop only.
Regards,
PenciDesign.
That was fast service AND perfect fix, thank you so so much!!!