Re: How do I change the image size on cart page please?

Solved

How do I change the image size on cart page please?

catukf100
Excursionist
25 2 4

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!

https://jasmineandjadeinteriors.com/ 

Screenshot 2022-10-19 at 11.57.07.png

Accepted Solution (1)

shahzad5
Excursionist
25 5 6

This is an accepted solution.

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;
}
I hope it helps.

Kind regards,
Shahzad

View solution in original post

Replies 2 (2)

shahzad5
Excursionist
25 5 6

This is an accepted solution.

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;
}
I hope it helps.

Kind regards,
Shahzad
catukf100
Excursionist
25 2 4

Thank you so much. That worked 🙂