How can I eliminate spaces in a multicolumn image layout?

Hi all, Do you happen to know how to remove all spaces between these two images (both side spaces and spaces between the two images). it is a multicolumn. Thanks a lot to everyone.

URL SITE: https://refade-8966.myshopify.com/

password: chauri

1 Like

Hi @Marco211 ,

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:
  4. And Save.
.page-width.section-template--19286285844822__4a1cf66a-ed99-4a46-bf0b-a0f66d8aff02-padding.isolate.scroll-trigger.animate--slide-in {
    padding: 0px;
    max-width: 100%;
}
.multicolumn-card__image-wrapper.multicolumn-card__image-wrapper--full-width.multicolumn-card-spacing {
    margin: 0px;
}
ul#Slider-template--19286285844822__4a1cf66a-ed99-4a46-bf0b-a0f66d8aff02 {
    gap: 0;
}
ul#Slider-template--19286285844822__4a1cf66a-ed99-4a46-bf0b-a0f66d8aff02 {
    justify-content: center;
}

Result:

I hope it help.

1 Like

Thank you very much, is it possible to eliminate also the side spaces on smartphone?

1 Like

Yeah sure,

Same instruction.

@media only screen and (max-width: 749px){
    ul#Slider-template--19286285844822__4a1cf66a-ed99-4a46-bf0b-a0f66d8aff02 {
    padding: 0px;
}
}

Result: