Hi! Pretty new to Shopify and in the process of building out my website.
I noticed when I added multiple items to the cart (desktop) the product images are taking up too much room.
Is there a way to constrain the width/height of the product image and it will scale to the appropriate size? Ideally, a thumbnail size would be best. I don’t want to cart length too long.
I’d love to make checking out for our customers as easy and as little scrolling as possible.
Step 1: Go to Online store > Themes > Actions > Edit code.
Step 2: Go to Asset > theme.scss.liquid and paste this at the bottom of the file: @media screen and (min-width: 769px){
.cart-product-image {
width: 30% !important;
}
}
In the Shopify version “Dawn” that I recently uploaded there is no file called “theme.css” to insert this code. I tried to insert it in “base.css”, but nothing changed. Would you let me know where this code should be inserted in this version?