How to set some space between the images

How to set some space between the images

NikosBat
Trailblazer
449 1 94

Hello guys, how can set a little of space between these images?

1000.png

Replies 4 (4)

IamThony
Shopify Partner
18 1 5

Hello @NikosBat 

if the images are not one then you can adjust the side padding of each image by adding the CSS code to the section custom CSS space.

.tagtheimageclass

padding-left: 10px; !adjust to your preference

padding -right: 10px; !adjust to your preference

 

Let me know this works by giving a like

Thony
Contact me if you need more help
Email: iamaustine597@gmail.com
NikosBat
Trailblazer
449 1 94

Thanks IamThony that has solved my problem!

 

tim
Shopify Partner
4497 535 1640

This looks like the code added later:

<style>
.slider.slider--mobile {
    column-gap: unset !important;
    row-gap: unset !important;
}
</style>  

 

Unsetting column gap does exactly this. Just remove this code.

I believe it was added near the bottom of layouts/theme.liquid

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com
NikosBat
Trailblazer
449 1 94

Thanks Tim, that has solved my problem!