Remove spaces in multicolumn on smartphone

Hi all, do you know how to remove these side spaces on smartphone? I would like the two images to be attached without any kind of gap. Thanks a lot to everyone

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

password: refade

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.
@media only screen and (max-width: 749px){
ul#Slider-template--19286285844822__4a1cf66a-ed99-4a46-bf0b-a0f66d8aff02 {
    padding-left: 0px;
    padding-right: 0px;
}
}

Result:

I hope it help.

Thank you very much