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.

Very stupid question i know, but how can i add a icon to my Rails website? you know to show in tabs when its opened in a browser etc?

Thanks

share|improve this question

3 Answers

up vote 22 down vote accepted

You're talking about a favicon.

Add this in the head part of your layout:

<link rel="shortcut icon" href="/path_to_your_pic"/>
share|improve this answer
Thats exactly it, thanks. – Mo. May 25 '11 at 20:47
6  
consider accepting the answer then :) – apneadiving May 25 '11 at 21:01
haha I tried to but it said i had to wait to accept so i logged out! its done now, thanks again – Mo. May 28 '11 at 0:29

You can use Favicon Rails helper:

<%= favicon_link_tag %>

Or if you want another image than favicon.ico

<%= favicon_link_tag 'another_image.ico' %>
share|improve this answer
Simple, but great 'as the rails way' answer. – Cadence96 Mar 10 '12 at 8:49
3  
I'd just like to add that the favicon.ico file should go in the public directory and documentation can be found here: apidock.com/rails/ActionView/Helpers/AssetTagHelper/… – David Grayson Sep 19 '12 at 22:20

Just so people know, the "document root" where you place your favicon.ico is the "public" folder. As a Rails newb I thought it would be in the root of the entire application.

Also, you may have to clear your cache for it show up.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.