How can I reduce extra padding between two sections in my store?

i have many section in my store where i need to reduce extra padding comming between 2 sections , ho to remove that extra spacing

1 Like

This is Noah from PageFly - Shopify Page Builder App

I can help you. Please can you provide the website url. Thank you.

Best regards,

Noah | PageFly

Hi @hemangjain

The default padding top and bottom are 48px.

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css, main.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.section--padded, .section--padded-default {
    padding: 30px 0;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!