I’m having trouble removing padding above the featured collection on my homepage. I’ve tried adding several lines of code to theme.css.liquid but it keeps removing the scrolll. Any help would be appreciated. Thank you!
The site is here: https://verseau.world/
There is a collection heading margin adding 60px on desktop and 20px on mobile
Look for the following on your theme.css and reduce it
@media only screen and (min-width: 750px) .featured-collection__heading { margin-bottom: 60px; } .featured-collection__heading { margin-bottom: 20px; }
Thank you!!