Add icons in menu drawer items on phone instead of emoji's

Solved

Add icons in menu drawer items on phone instead of emoji's

TrendBlend
Trailblazer
352 0 37

Hello, how can I use google font icons in my main menu instead of using emoji's? I'm using DAWN Theme: Glow Curtain: 400 LED-lampjes voor een magische sfeer – InteriorGlows

Schermafbeelding 2025-04-28 113244.png

Accepted Solution (1)

Small_Task_Help
Shopify Partner
1043 42 98

This is an accepted solution.

Hi,

Hope this will help

- Add Google Material Icons to Your Store
Code example for head section
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
- Find Where Mobile Menu Items Are
- Insert Icons Next to Menu Links
- Pick Different Icons for Different Menu Items
Code example

{% if link.title == 'Home' %}
  <span class="material-icons" style="font-size:20px;vertical-align:middle;">home</span>
{% elsif link.title == 'Shop' %}
  <span class="material-icons" style="font-size:20px;vertical-align:middle;">shopping_bag</span>
{% elsif link.title == 'Contact' %}
  <span class="material-icons" style="font-size:20px;vertical-align:middle;">mail</span>
{% endif %}
{{ link.title }}
To Get Shopify Experts Help, Click Here or E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Expert India
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad

View solution in original post

Reply 1 (1)

Small_Task_Help
Shopify Partner
1043 42 98

This is an accepted solution.

Hi,

Hope this will help

- Add Google Material Icons to Your Store
Code example for head section
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
- Find Where Mobile Menu Items Are
- Insert Icons Next to Menu Links
- Pick Different Icons for Different Menu Items
Code example

{% if link.title == 'Home' %}
  <span class="material-icons" style="font-size:20px;vertical-align:middle;">home</span>
{% elsif link.title == 'Shop' %}
  <span class="material-icons" style="font-size:20px;vertical-align:middle;">shopping_bag</span>
{% elsif link.title == 'Contact' %}
  <span class="material-icons" style="font-size:20px;vertical-align:middle;">mail</span>
{% endif %}
{{ link.title }}
To Get Shopify Experts Help, Click Here or E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Expert India
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad