Hi - What custom code do I need to add to reduce the padding between all the sections on the home page of my site?
I’ve attached a few reference images below.
My website is: https://jivamorelife.com/
Hi - What custom code do I need to add to reduce the padding between all the sections on the home page of my site?
I’ve attached a few reference images below.
My website is: https://jivamorelife.com/
Try adding this code to the bottom of theme.css
.index-section {
padding-top: 0;
}
Thank you!! That worked. How an I reduce the padding between the product images of this collection and the view all button?
You could add this code
hr {
margin: 30px;
}
Please add the following code at the bottom of your assets/theme.css file.
.index-section {
padding-top: 0;
}
#shopify-section-collection hr.hr--invisible {
margin: 15px !important;
}
Hope this works.