How can I resize the product card on my homepage?

Hello

I am using a customized version of spotlight 11.0.0.

I want products to show in 1 column but not the “full” width like seen below.

What I would like was for the card to be of a size like the red box I have drawn here:

How do I scale it down?

https://kyototango.myshopify.com/

thanks in advance

What’s your store url ?

https://kyototango.myshopify.com/
oops forgot to add that. also just added to original message :slightly_smiling_face:

Go to your Online Store > Settings > Custom Css and paste this code ther

.card__inner.color-background-1 {
–ratio-percent: 70% !important;

}

Hi @viggostarcke

Do you mean like this?

If it is try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • 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:
.card-wrapper.product-card-wrapper.underline-links-hover {
    width: 55%;
    margin: auto;
}
  • And Save.
  • Note: you can increase/decrease the width.

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