Increase space between images

Hi guys,

How can I increase the space between 2 images in mobile view.

My url: https://189ee3-2.myshopify.com/

Thank you,

1 Like

Hi @collins276

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 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 (max-width: 750px){
.multicolumn-list li:nth-child(2) {
    padding-right: 15px;
}
.multicolumn-list li:nth-child(3) {
    padding-left: 15px;
}
}

And Save.

Result:

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

@collins276 , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
@media (max-width: 750px){
    .multicolumn-list li:nth-child(2) {
    padding-right: 10px;
}

        .multicolumn-list li:nth-child(3) {
    padding-left: 10px;
}
}

Make sure to change both of the 10px value to whatever value you wish.

If it helps you please click on the “like” button and mark this answer as a solution!

Thank you.

Kind regards,
Diego

1 Like

Hi @collins276

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Richard | PageFly

1 Like

Hi there, sorry for not clearing my issue, I just want to keep the right and left side space, just reduce the images width to increase the space between them.