I’ve been trying to remove this white bar that show between two sections on Shopify. The code i see that impact this is:
.section + .section {
margin-top: var(--spacing-sections-mobile);
}
@media screen and (min-width: 750px) {
.section + .section {
margin-top: var(--spacing-sections-desktop);
}
}
Can someone please help me understand how to remove this white bar?
Thanks