How do I fix it so the footer section isn’t overlapping everything and stays at the bottom and how do I get rid of the white section?
Site: www.raidednz.com
Password: password12345
A Shopify store owner using the Capital theme is experiencing two layout issues: the footer section overlapping page content and an unwanted white section appearing on their site.
Solution Provided:
A community helper (GTLOfficial) offered CSS fixes to be added to the theme.min.css file:
display: none !importantrelativeCurrent Status:
The original poster confirmed the white section issue was resolved after applying the first CSS snippet. However, the footer overlapping problem persists despite the second code suggestion being provided. The discussion remains open as the main footer issue is not yet fully resolved.
How do I fix it so the footer section isn’t overlapping everything and stays at the bottom and how do I get rid of the white section?
Site: www.raidednz.com
Password: password12345
Hello @raidednz
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> theme.min.css
add this code at the end of the file.
#dynamic-checkout-cart {
display: none;
}
#SearchContainer {
display: none !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Thanks! Got rid of the white section but footer is still overlapping.
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> theme.min.css
add this code at the end of the file.
.footer-wrapper.fix-to-bottom {
position: relative;
}
If this was helpful, hit the like button and accept the solution.
Thanks