i want to reduce the siize of the space between
Contact- Search
Policy- Home
the website is https://inshade.shop/
A Shopify store owner using the Dawn 8.0.0 theme sought to reduce spacing between two footer menu sections (Contact and Policy).
Solution provided:
section-footer.css filemax-width: 180px for footer menu blocksjustify-content: start and padding-left: 50px for centered footer imagesOutcome: Issue resolved successfully with the adjusted CSS code.
i want to reduce the siize of the space between
the website is https://inshade.shop/
oh yeah sorry for not mentioning my theme is dawn 8.0.0 on the website http://inshade.shop/
Hi @inShade ,
This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/section-footer.css->paste below code at the bottom of the file:
@media screen and (min-width: 749px) {
.footer-block.footer-block--menu {
max-width: 180px;
}
}
I hope it would help you
Best regards,
Richard | PageFly
Hi @inShade ,
You can try replace previous my code be below code:
@media screen and (min-width: 749px) {
.footer-block-image.center {
justify-content: start;
padding-left: 50px;
}
.footer-block.footer-block--menu {
max-width: 180px;
}
}
I hope it would help you
Best regards,
Richard | PageFly
that fixed the issue. thanks a lot!