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
Hi how do i remove the black space in my mobile version of my footer?
I'm a noobie to code.
Also is it possible to make the spacing more even and tighter on web version so the footer isn't cluttered?
Thank you.
https://2cc3d4-2.myshopify.com/?_ab=0&_fd=0&_sc=1
Solved! Go to the solution
This is an accepted solution.
Please add this code to your theme.liquid file before </head> tag
<style>
@media(max-width:767px){
.footer__blocks-wrapper .footer-block{
margin:0 !important
}
.footer-block.grid__item.footer-block--menu {
vertical-align: top !important;
}
}
@media screen and (min-width: 768px) {
.footer__content-top .grid {
margin-right: 4rem !important;
}
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Hi @TheUnavailable ,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.liquid
Step 3: Paste the below code at the bottom of the file -> Save
<style>
@media(max-width:767px){
.footer__blocks-wrapper .footer-block{
margin:0 !important
}
}
</style>
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
Please let me know if it works by giving it a Like or marking it as a solution!
PageFly - #1 Page Builder for Shopify merchants.
All features are available from Free plan. Live Chat Support is available 24/7.
Thanks, the Customer Care & Our Policies columns became on even, how do I fix?
Could you share your store link to check?
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
This is an accepted solution.
Please add this code to your theme.liquid file before </head> tag
<style>
@media(max-width:767px){
.footer__blocks-wrapper .footer-block{
margin:0 !important
}
.footer-block.grid__item.footer-block--menu {
vertical-align: top !important;
}
}
@media screen and (min-width: 768px) {
.footer__content-top .grid {
margin-right: 4rem !important;
}
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.