hello, i want to reduce the gap between my footer headings and menus, as there is currently a big gap:
my website is www.antico-abito.com , theme is dawn
A user seeks to reduce excessive spacing between footer headings (like “INFORMATION”, “CUSTOMER SUPPORT”) and their corresponding menu links on their Dawn theme Shopify store.
Proposed Solutions:
Multiple respondents suggest adding custom CSS to adjust the spacing:
Assets/base.css or Assets/section-footer.css targeting .footer-block__heading with margin-bottom values between 0.25rem and 1rem.footer-block__details-content by setting margin-top: 0theme.liquid file before the </head> tagKey CSS properties to adjust:
.footer-block__heading { margin-bottom: 0.5rem; } (adjustable to preference).footer-block__details-content { margin-top: 0; }.footer-block { margin-bottom: 1rem; } for overall block spacingThe discussion remains open with no confirmation from the original poster on which solution worked. All solutions follow similar approaches with minor variations in recommended margin values and file locations.
hello, i want to reduce the gap between my footer headings and menus, as there is currently a big gap:
my website is www.antico-abito.com , theme is dawn
Hello @ads18922
To reduce the gap between footer section headings (like “INFORMATION”, “CUSTOMER SUPPORT”) and their menu links in the Dawn theme, you’ll want to adjust the spacing in the footer section via CSS.
Here’s how to do it:
Steps to Reduce Footer Gap in Dawn Theme
From your Shopify Admin, go to
Online Store > Themes > next to Dawn, click … > Edit code.
In the Code Editor, open:
Assets/base.css
Scroll to the bottom and add this CSS code:
/* Reduce spacing between footer headings and links */
.footer-block__heading {
margin-bottom: 0.5rem; /* Reduce as needed */
}
.footer-block__details-content {
margin-top: 0; /* Remove extra top margin from menu */
}
You can fine-tune 0.5rem to 0.3rem or 0.25rem if you want them even closer.
Optional Enhancements
If your theme version of Dawn has padding or margin applied elsewhere in the .footer section, you might also want to inspect and tweak:
.footer-block {
margin-bottom: 1rem; /* Reduce if there's too much space between blocks */
}
let me know if it work
Thank you ![]()
Hello ads18922,
.footer-block__heading {margin-bottom: 0.7rem;}
Hi,
add this css
.footer-block__heading {
margin-bottom: 1rem !important;
}
Thanks!
Hi @ads18922
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!