Appearance of Collection Page Thumbnails in Impulse Theme

Solved

Appearance of Collection Page Thumbnails in Impulse Theme

kingbeanz
Excursionist
24 4 6

I'm currently using Impulse Theme and the collection thumbnails appear uneven dictated by the product photo.

See: https://emery-london.com/collections/womens-best-sellers

Screen Shot 2024-08-29 at 1.09.29 pm.png

 

I come across many Impulse Theme website with uniform collection size images.
See: https://stylewithava.com/collections/d-r-e-s-s-e-s

Screen Shot 2024-08-29 at 1.12.21 pm.png

1. Is there a simple setting I'm missing on the backend UI for Impulse that allows uniform images ... ?

... or is it custom coded?

2. IF custom code, could you please advise me?

THANK YOU 🙏

Accepted Solution (1)

kingbeanz
Excursionist
24 4 6

This is an accepted solution.

I'VE FIGURED IT OUT.

When editing your Impulse Collection Page go to:

Product Grid > Theme Settings > Force Image Size

Select Square and you're done !!!!!

View solution in original post

Replies 4 (4)

topnewyork
Globetrotter
633 113 134

Hi @kingbeanz ,

 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

 

<style>
.grid-product__image-mask {
    height: 300px !important;
}
</style>

 

topnewyork_0-1724935993697.png

 

 

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!

Need a Shopify developer?
Hire us at Top New York Web Design
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel

Huptech-Web
Shopify Partner
909 186 190

Hi @kingbeanz , The issue is with the inline CSS applied to the grid. Please review the below screenshot the padding-bottom in the screenshot should be 100%
padding-bottom.png

Try adding the below CSS to your "theme.liquid" in <style> tag.

<style>
.collection-grid__wrapper .image-wrap {
    padding-bottom: 100% !important;
}
</style>

 

If you found this response helpful, please do like and accept the solution. Thanks!
Need support with Customizing your Shopify store?
Feel free to contact me at info@huptechweb.com or Visit our website Huptech Web.
Instant Shortcode Builder: Integrate customizable UI features anywhere in your store - No coding knowledge required
kingbeanz
Excursionist
24 4 6

Hey Huptech, that was really helpful thank you so much!

I'm not sure if it's too advanced, but is there a way, instead of cropping the full picture is included in the thumbnail?

Like this example: https://jones-london.com/collections/woman-dresses

Screen Shot 2024-08-29 at 4.44.51 pm.png

 

So no matter what ratio the picture is, its still included?

And white space fills the other area?

Sorry if that's too much to ask.

Appreciate the help!

kingbeanz
Excursionist
24 4 6

This is an accepted solution.

I'VE FIGURED IT OUT.

When editing your Impulse Collection Page go to:

Product Grid > Theme Settings > Force Image Size

Select Square and you're done !!!!!