How to alter cart icon style and add a wishlist icon in my theme?

How can change cart icon style and menu style in my shopify theme and

how can add Wishlist icon to my header

Please urgent help needed…

Hey, @abhi13

Happy to help today. Note: Be sure to duplicate your theme before making any changes to your theme files. That way if something breaks, you still have a working version of your theme to fall back on.

In your theme files, you should have a file called ‘icon-cart.liquid’ where the cart icon can be updated. From there, you will want to enter the following code:

<img src="Enter image URL here" />

Be sure to keep the “” wrapped around your image URL.

If you find the icon isn’t sized to your liking, you will then head over into your ‘theme.css theme’ file and paste the following code at the bottom of the file:

 .site-header__cart img {
width: 25px;height: 25px; 

 }  

You can change the 25px values to anything you like.

If there is anything else I can help you with, please let me know.

1 Like

I cant find : icon-cart.liquid

instead of that i found this code

{%- when ‘header-cart’ -%}



Hey, @abhi13

icon-cart-liquid is the file that is generally found under the assets folder in your theme files.

1 Like