How can I adjust the size of collection list cards in Sense Theme?

Hi! I am trying to change the size of the cards in the collection list. They are too big and would like to make them smaller. Any tips on how?

This is my site for reference: https://growinggracecreations.com/

Hi @growinggracecre ,

To minimize the cards in your collection list, you can do it in the following way

  • In the admin, go to Online store → Themes → Edit code

  • then search for base.css
![view - 2024-01-02T113209.163.png|775x448](upload://6PipJxKDTiaE5vckCBwTuV1KbUc.png)
  • Next find @media screen and (min-width: 990px) then adjust max-width according to your requirements
    eg: max-width: calc(25% - 117px* 3 / 4); I replaced var(–grid-desktop-horizontal-spacing) with 117px, increasing the size of the cards becomes smaller.

Result:
Before

After

Hope it helps @growinggracecre