How to prevent automatic image resizing in a gallery layout?

Solved

How to prevent automatic image resizing in a gallery layout?

Firestone
Tourist
9 0 1

Hi,

I am displaying some images on my website using a gallery layout, and my images are automatically resizing based on the size of the browser window. This causes the site to look really bad when the browser window is not the optimal size, as some of the image gets cropped out.

This is the page I am trying to fix.

https://thecanvas.global/pages/the-canvas-3-0

Thank you for your help!

Accepted Solution (1)

LitCommerce
Astronaut
2860 684 760

This is an accepted solution.

Hi @Firestone,

Please go to Actions > Edit code > Assets > custom.css file and paste this at the bottom of the file:

.gallery__image.rimage-outer-wrapper.fade-in.lazyloaded {
    background-size: contain !important;
}

Hope it helps!

LitCommerce - The Most Simple & Affordable Multi-channel Selling Tool.
Effortlessly sell on biggest marketplaces like Amazon, Etsy, eBay, Facebook etc with bulk listing tool, real-time sync & smart order management. Use LitCommerce free for 1-year now!

View solution in original post

Replies 4 (4)

Akibhusen
Shopify Partner
715 121 148

@Firestone , Please try the below CSS and let me know if it is working fine or still facing the same issue.

 

Add this at the end of your custom.css file.

.rimage-outer-wrapper.fade-in.lazyloaded{
background-size: 100% !important;
}

 

Firestone
Tourist
9 0 1

Unfortunately this did not fix the problem, but thank you for responding quickly.  

LitCommerce
Astronaut
2860 684 760

This is an accepted solution.

Hi @Firestone,

Please go to Actions > Edit code > Assets > custom.css file and paste this at the bottom of the file:

.gallery__image.rimage-outer-wrapper.fade-in.lazyloaded {
    background-size: contain !important;
}

Hope it helps!

LitCommerce - The Most Simple & Affordable Multi-channel Selling Tool.
Effortlessly sell on biggest marketplaces like Amazon, Etsy, eBay, Facebook etc with bulk listing tool, real-time sync & smart order management. Use LitCommerce free for 1-year now!
Firestone
Tourist
9 0 1

This worked, thank you!