Hi @jzcreativespace ,
You can follow these steps to make the footer reveal on scrolling
-
Open Online Store > Theme > Edit Code
-
Find and open the theme.css (or base.css, custom.css, styles.css) file
-
Paste the code snippet below at the bottom of the file and hit save (it works on the Clean style)
body > .container {
background-color: var(--COLOR-FOOTER-BG) !important;
}
body > footer.footer-sections {
position: sticky;
bottom: 0;
left: 0;
z-index: -1;
height: 100vh;
}
body > footer.footer-sections .shopify-section.shopify-section-group-group-footer {
background-color: var(--COLOR-FOOTER-BG);
}
Here is the result
https://www.loom.com/share/fe21226c882c4252a2c3bc23647d1271
Hope this helps you solve the issue.
Please don’t forget to Like and Mark it as an Accepted Solution if you find this helpful. Thank you!