hi, i want to reduce the spacing between my footer menus. i want to change it from image 1 to image 2. dawn theme - 6.0.2
URL: nightlightcity.com
pass: bowchu
image 1:
image 2:
A user seeks to reduce spacing between footer menus in their Dawn theme (v6.0.2) store, providing before/after images showing desired tighter column spacing.
Two CSS solutions offered:
First approach: Add CSS to base.css file targeting .footer__content-top .grid with row-gap: 6rem and margin adjustments for newsletter blocks (6% right margin, 5% left margin, 60% width).
Second approach: Insert CSS in theme.liquid before </body> tag, using media query for screens min-width 750px to set footer grid wrapper width to 75%.
Both solutions use !important flags and media queries to control desktop layout. The discussion remains open with no confirmation of which solution worked or if the issue was resolved.
hi, i want to reduce the spacing between my footer menus. i want to change it from image 1 to image 2. dawn theme - 6.0.2
URL: nightlightcity.com
pass: bowchu
image 1:
image 2:
@ni3 Put below css into base.css file end of the file (Online store ->themes->assets->base.css)
@media screen and (min-width: 750px)
.footer__content-top .grid {
row-gap: 6rem;
margin-bottom: 0;
width: 60% !important;
margin-left: 5% !important;
}
.footer-block--newsletter {
margin-right: 6% !important;
}
}
Hello @ni3
I would like to give you a solution to support you:
<style>
@media only screen and (min-width: 750px){
.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet {
width: 75% !important;
}}
</style>
Was my reply helpful? Please Like and Accept Solution. This mean alot to me