I’d love some help to overlay the footer on top of the main homepage section content.
This is my theme (Baseline) currently: https://emy-creative-studio.myshopify.com but the image below is how I’d love it to be:
A user seeks to overlay their footer on top of the main homepage content in the Baseline theme, providing a reference image showing the desired effect.
Solution Provided:
theme.min.css that positions the footer as fixed at the bottom with z-index 999Follow-up Request:
The original poster asks how to make the page fit the screen height without scrolling (like janemade.co).
Additional Solution:
padding-bottom: 100vh to achieve full viewport heightStatus: A new user (NEEN2) with the Savor theme requests similar help for overlaying their footer across the entire website, providing their own reference image. This request remains unanswered.
I’d love some help to overlay the footer on top of the main homepage section content.
This is my theme (Baseline) currently: https://emy-creative-studio.myshopify.com but the image below is how I’d love it to be:
Hi @pearlerwork ,
To change you follow the instruction:
.template-index .bg-footer-background {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
color: #fff;
z-index: 999;
}
.template-index .bg-footer-background .bg-primary-background {
background: transparent !important;
}
.template-index .bg-footer-background .text-base {
color: #fff;
}
.template-index .bg-footer-background #contact_form {
color: #fff;
}
.template-index .bg-footer-background #contact_form .border-primary-text {
border-color: #fff;
}
I hope it would help you.
That worked beautifully, thanks so much! @AvadaCommerce
Would you happen to know how to make it fit to the height of my screen so that it doesn’t have any scroll on all devices? Example: https://janemade.co/
Hi @pearlerwork ,
You can follow the instruction below:
.template-index [data-has-background-video] .background-video-wrapper {
padding-bottom: 100vh;
}
I hope it would help you.
Yeah that’s perfect, thanks heaps! @AvadaCommerce