Reputation: 33
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
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
Reputation: 21
<%= link_to '/facebook' do %>
<i class= "fa fa-facebook"></i>
<% end %>
Upvotes: 2