How to specify the favicon for the admin panel? Should it be specified somewhere in the configuration? No information regarding this is given in the wiki.
Asked
Active
Viewed 1,127 times
3 Answers
3
Just throw a favicon.ico
in your /public
folder.

t56k
- 6,769
- 9
- 52
- 115
-
I already have a favicon.ico in my public folder but its not getting displayed. – Srivathsa May 13 '14 at 06:36
-
1In my experience it takes a bit of time to cache the icon. – t56k May 13 '14 at 06:39
-
1Chrome was the culprit. I cleared the cache, restarted the server. Now its working. Thanks :) – Srivathsa May 13 '14 at 06:42
0
Add below snippet in your template's header tag.
<%= favicon_link_tag 'favicon.ico' %>
see this link.

Community
- 1
- 1

Kundan Pandit
- 412
- 6
- 17
0
try <%= favicon_link_tag 'favicon.ico' %>
and moving the favicon.ico
to the /public/images directory.

Gagan Gami
- 10,121
- 1
- 29
- 55