Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.