How can I make a single collection image smaller?

How can I make a single collection image smaller?

grumpycookies
Excursionist
35 0 12

Hi community!

 

I am working on adding a single collection on my page (TRADE THEME), but it makes it soooo big! How can I scale this down? (fyi, i've tried the adapt to first image, small, medium, large options but all come out big 😑 )

 

On mobile, it looks pretty good, but it's the desktop version that's too ginormous. Helps!

 

Here is the preview link, since I'm still working on fixing things up. https://m1vxiidlhaedu4jq-77911654695.shopifypreview.com

 

desktop view

grumpycookies_0-1737237996593.png

 

mobile view

grumpycookies_1-1737238030796.png

 

 

Replies 3 (3)

Made4uo-Ribe
Shopify Partner
10211 2427 3081

Hi @grumpycookies 

Try this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. 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 only screen and (min-width: 749px) {
.card-wrapper.animate-arrow.collection-card-wrapper .card__inner {
    width: 30%;
    margin: auto;
}
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1737238873846.png

     

 

 Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
grumpycookies
Excursionist
35 0 12

@Made4uo-Ribe 

 

thank you so much for the code! it 50% worked 🙂 

 

it did make that category pic smaller, but it also did it for the rest of the categories 😞 

 

the valentine's day category is in its own section, so not sure how it made the other section smaller also. here is a pic. could this be fixed? i did change the % from 30% to 75% which did make the circle categories bigger but also the valentine one. aaah. 😞

 

grumpycookies_0-1737242295072.png

 

Made4uo-Ribe
Shopify Partner
10211 2427 3081

Please, replace on this code. 

 

 @media only screen and (min-width: 749px) {
.section-template--23830794043687__collection_list_XGbA7M-padding .card-wrapper.animate-arrow.collection-card-wrapper .card__inner {
    width: 50%;
    margin: auto;
}
}

 

And Save.

Result:

Made4uoRibe_0-1737289294251.png

 

 

 

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.