Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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
Solved! Go to the solution
This is an accepted solution.
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
This is an accepted solution.
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
This is an accepted solution.
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.
This is an accepted solution.
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