Hi just wondering is it possible to fix the spacing for “MOBILE only” footer to have less space in between the FAQ and social media icons so that footer will look neater.
Web: https://dissy-co.myshopify.com/
Password: Cheolt
A user seeks to reduce spacing in the mobile footer between FAQ and social media icons for a cleaner appearance.
Solutions Provided:
Two contributors offered CSS code snippets targeting mobile devices (max-width: 767px):
base.css to remove bottom margins from footer grid and list elementssection-footer.css, adjusting margins for footer wrapper and blocksBoth solutions involve:
Follow-up Question:
The original poster asked PageFly-Victor about center-aligning the menu and currency selector instead of left alignment. A partial CSS solution for center-aligning the footer country label was provided.
Status: The spacing issue appears addressed with working code, though the alignment customization remains partially answered.
Hi just wondering is it possible to fix the spacing for “MOBILE only” footer to have less space in between the FAQ and social media icons so that footer will look neater.
Web: https://dissy-co.myshopify.com/
Password: Cheolt
Hi [email removed]KelvinLeow,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at bottom of the file → Save
@media(max-width:767px){
.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet,
ul.footer-block__details-content.list-unstyled{margin-bottom:0 !important}
}
Hope my solution works perfectly for you!
Best regards,
Victor | PageFly
To fix mobile footer follow below steps :
@media only screen and (max-width:767px){
.footer__blocks-wrapper.grid{
margin-bottom: 0px;
}
.footer__blocks-wrapper .footer-block .list-unstyled{
margin-bottom: 10px;
}
}
Hope this works well for your site.
Best Regards !
Hi @PageFly-Victor , I have another question. For the menu and currency is it possible to make it center alignment instead of left alignment?
You can be using my code
@media (max-width: 767px){
#FooterCountryLabel {
text-align: center !important;
}}