Looking to remove the padding between sections added on the empire theme. Not sure why they are so large. In this scenario between the banner and the feature products collection.
Thanks in advance
A user seeks to reduce excessive padding between sections on their Shopify store’s homepage using the Empire theme.
Solution Provided:
.home-section and .home-section--title elementsCurrent Status:
Looking to remove the padding between sections added on the empire theme. Not sure why they are so large. In this scenario between the banner and the feature products collection.
Thanks in advance
Hello,
Please share “Store URL”.
Thanks!
www.racegerman.com or testrg2022.myshopify.com either work.
You can follow the instruction here to remove the padding :
Go to Shopify > Theme > Customize > Settings > Custom CSS
Copy this code and paste to the section > save
@media screen and (min-width: 1024px) {
.home-section--title {
margin-top: 1.25rem;
}
}
@media screen and (min-width: 860px) {
.home-section--title {
margin-bottom: 1.25rem;
}
}
Here is the result:
Thank you! This worked great.
Is it possible to fix this for mobile view too?