Trying to remove some padding within my theme and wondering how to do so.
Screenshots are attached for spaces I would like to decrease in padding.
Goal: Reduce excessive padding/spacing in specific areas of a Shopify theme (areas indicated in attached screenshots and a preview link).
Proposed fixes (CSS-based, mobile-focused):
Notes:
Status: No confirmation of results yet; one responder offered further reductions if needed. The thread remains open/unresolved.
Trying to remove some padding within my theme and wondering how to do so.
Screenshots are attached for spaces I would like to decrease in padding.
Hi @GildedSocial ,
I understand that you want to reduce the padding of the specific are of your store.
Try this.
@media only screen and (max-width: 430px) {
.homepage-featured-content-box-inner.wow.fadeInUp {
padding: 5px;
}
}
Result:
And for the 2nd one.
.homepage-sections-wrapper.homepage-sections-wrapper--white {
padding-bottom: 10px;
}
Result:
If you like to reduce more this one let me know.
I hope it help.
I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.
Please add this css in your bottom of the theme.min.css file:
@media only screen and (max-width: 767px){
.shopify-section .homepage-sections-wrapper {padding-bottom: 15px !important;}
}
Regards,
San