Changing the Cart Icon on Boundless theme? Driving me nuts!

I just can’t find the solution to this anywhere!

However I do know exactly where to alter code for a new Cart Icon: .icon-cart:before { content: “\e600”; }

I’ve messed around with the code ‘e600’ and managed to get different icons, but none of them were the one I’m looking for. I just want to have a Bag instead of a Cart!

So my question is where can I find the codes for all the icons available because I’m convinced there’s a Bag Icon somewhere in my backend.

Under Assets, I can see icons.tff, icons.woff, icons.eot and icons.json but when I click on them they’re all blank!!

Please help its getting frustrating! Thanks

:waving_hand:

Faced with the same problem. I’m going to test this example now. I’ll give you an answer later. In the meantime, look at it.

www.huratips.com/tech-tips/how-to-add-font-awesome-to-your-shopify-store

Create a file in Snippets> icon.liquid

{% if icon == 'cart' %}

{% endif %}

{% if icon == 'hamburger' %}

{% endif %}

Open header.liquid and find:


Below paste the following code:

{% include 'icon' with 'cart' %}

For example:

END.

Create your own snippet for each icon:

{%- if icon == 'NAME**' -%}
  
{%- endif -%}

U find the .svg codes on the internet.

Peace