ray
ray

Reputation: 33

How to add a facebook glyphicon to rails link_to

I am trying to add a glyph-icon to my Facebook link_to in ruby on rails but when I try it doesn't show up any idea on how to do this?

This is the what I have attempted:

<li> 
  <i class= "fa fa-facebook"></i>
  <%= link_to "Facebook", '/facebook' %>
</li>

any help is greatly appreciated..thank you

Upvotes: 1

Views: 142

Answers (2)

blazpie
blazpie

Reputation: 312

what about:

<li> 
  <%= link_to '/facebook' do %>
    Facebook // delete if you don't need text
    <i class= "fa fa-facebook"></i>
  <% end %>
</li>

Upvotes: 1

Ashish Kumar
Ashish Kumar

Reputation: 21

<%= link_to '/facebook' do %>
    <i class= "fa fa-facebook"></i>
 <% end %>

Upvotes: 2

Related Questions