How to remove section margin for the sense theme?

Hello, can someone tell me how to remove the white space in between the two pink sections?

Cheers.

please share the url

Hi @7ohann ,

Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution.

https://www.skinandshe.com/

Go to online store->edit code of your theme → search base.css and add this css

section#shopify-section-template--23066278953241__featured-collection {
    margin-top: 0;
}

Thanks

Hi @7ohann ,

You could follow these steps:

Step 1: Go to Online store > themes > edit code and find base.css file

Step 2: Insert below code at the end file and Save them

.section+.section {
  margin-top: 0;
}