Make cart icon smaller?

Make cart icon smaller?

Ryan1998
Pathfinder
101 2 32

Anyone know how to make the cart icon smaller please?

url: https://errival.com/ 

Screenshot 2024-08-01 at 21.04.08.png

Replies 4 (4)

Acme
Shopify Partner
69 8 13

Hi, @Ryan1998 
Please open online store -> theme -> customize -> edit code -> icon-cart.liquid
<svg
  class="icon icon-cart"
.....
  viewBox="0 0 70 70"
  fill="none"
>
 .....
</svg>
- base.css
.header__icon--cart>svg {
  margin: 12px ;
}

Acme_0-1722545160206.png

You can change size what you want by adjusting above bold values.

Ryan1998
Pathfinder
101 2 32

thanks. Where do I past this to be clear?

Ryan1998
Pathfinder
101 2 32

paste*

Acme
Shopify Partner
69 8 13

You should find out cart svg in your code and then paste there.
margin is pasted to base.css.