How do I change the image size on cart page please? The image is far too small. I’m using the Dawn theme
& enclosing a pic.
Thanks in advance for any help!
How do I change the image size on cart page please? The image is far too small. I’m using the Dawn theme
& enclosing a pic.
Thanks in advance for any help!
Hi, go to theme>edit code>assets>component-cart-items.css then press Ctrl + F and search for .cart-item__image . When you find this class, add width and height.
Css code should look like below
.cart-item__image {
height: 100px;
width:100px;
}
Thank you so much. That worked ![]()