I appreciate your input.
I am trying to add a "home" icon before I start to add other icons but I am not sure where to put it. I only one this font icon on the first link in the navigation. I have placed the fonts in assets, created a font.css.liquid file and created a class called "icon" (in style.css.liquid) but I'm not sure where I should place the icon class when the html is like:
Liquid HTML
<ul>
{% for link in linklists.main-menu.links %}
<li class="{% if forloop.first %}first{% elsif forloop.last %}last{%endif%}">
{% assign child_list_handle = link.title | handleize %}
{% if linklists[child_list_handle].links != blank %}
<div class="has-dropdown">
<a href="{{ link.url }}" class="clearfix">
<span class="nav-label">{{ link.title | escape }}</span>
<span class="nav-arrow"></span>
</a>
<ul>
style.css.liquid CSS file
/* Webfonts-icon CSS Edit */
.icon {
{ font-family: 'icon-webfont'; }
}
What would you advise about having a backup font for the icons? Is it pointless to add standard fonts?
Cheers