How to make product cards smaller in collections?

Solved

How to make product cards smaller in collections?

GoombaGrows
Explorer
48 2 9

Please help make my product cards in my collections smaller so they are in similar size to the all products collection. 

GoombaGrows_0-1746505532513.png

the first photo shows how they look right now, the second photo is how I would like them to look. Since they are so big it lowers the quality. 

GoombaGrows_1-1746505581925.png

site: https://goombagrows.com/

 

Accepted Solution (1)
BiDeal-Discount
Shopify Partner
500 58 115

This is an accepted solution.

Hi @GoombaGrows 

Let try to add the Custom CSS below:

@media (min-width: 750px) {
  .product-grid-container ul.grid--4-col-desktop {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .product-grid-container ul.grid--4-col-desktop .grid__item {
    width: 100%;
    max-width: 100%;
  }
}

 

The result will be like:

BiDealDiscount_0-1746506978249.png

 

 

- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with bundles, quantity breaks, volume discounts. AOV+ with gifts, shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330

View solution in original post

Replies 4 (4)

GoombaGrows
Explorer
48 2 9

GoombaGrows_0-1746505892516.png

These two products also look big for some reason on the all products page. It looks like shopify is trying to fill the empty space but I do not like that. 

BiDeal-Discount
Shopify Partner
500 58 115

This is an accepted solution.

Hi @GoombaGrows 

Let try to add the Custom CSS below:

@media (min-width: 750px) {
  .product-grid-container ul.grid--4-col-desktop {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .product-grid-container ul.grid--4-col-desktop .grid__item {
    width: 100%;
    max-width: 100%;
  }
}

 

The result will be like:

BiDealDiscount_0-1746506978249.png

 

 

- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with bundles, quantity breaks, volume discounts. AOV+ with gifts, shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330
GoombaGrows
Explorer
48 2 9

This worked! Thank you 🙂

Mustafa_Ali
Explorer
415 41 76
<style>
@media screen and (min-width: 750px) {
    .page-width {
        padding: 0px 20rem;
    }
}
</style>

Mustafa_Ali_0-1746506388921.png

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the </body> ----->
before the body ----->
if this code work please do not forget to like and mark it solution