remove lining between modules

Hi All,

As you can see i have some lining between the modules. However i can’t remove it. Do you have a code for me to remove this?

Store: https://theonlinecollective.nl/
Theme: Trade

Thanks!

Hi @TOC-MR ,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

section#shopify-section-template--23610111885658__multicolumn_wghtqt {
    margin-top: 0px !important;
}

Hi @TOC-MR

TRy this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.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:
@media screen and (min-width: 750px) {
    .section+.section {
        margin-top: 0 !important;
    }
}

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

Hi @Made4uo-Ribe it worked for Desktop, but not for mobile

Replace on this code.

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

And save.

Please, refrehs the preview after you save.

Thanks!

@Made4uo-Ribe It worked thanks!