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.

Favicon business got complicated during last years. New kinds of devices (re)invented, like tablets and smart smartphones. They use favicons in new ways (e.g. as application icons on homescreens) and require vendor-specific ways of linking them. In similar way, browsers now allow creating desktop-shortcuts for web-apps (which also use favicons for icons). Worse, we now have high-resolution ("retina") displays in both portable devices and laptops, which require higher-resolution images for icons. Even worse, different browsers (and versions) support different image-formats for icons and different sizes. Starting with 16x16-only .ico-only IE6 and ending with Opera, which now supports .svg icons.

What should I do in order to support crisp icons on most devices and browsers of today?

So far the best resource I could find was html5boilerplate, which recommends having the following files:

apple-touch-icon-114x114-precomposed.png
apple-touch-icon-144x144-precomposed.png
apple-touch-icon-57x57-precomposed.png
apple-touch-icon-72x72-precomposed.png
apple-touch-icon-precomposed.png
apple-touch-icon.png
favicon.ico  # 32x32

while not putting any links to them in <head> tag.

Edit: another consideration is that .ico files can store several images with different resolution in them. Is this useful or supported?

share|improve this question

3 Answers

There is some official advice at http://developer.apple.com/library/ios/#DOCUMENTATION/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html which seem to confirm your list.

Ideally, the favicon.ico file should contain multiple resolutions in the one file as up to date browsers can now take advantage of this and a 16 x 16 icon is never going to look very good on a retina screen.

Microsoft apparently now recommend the favicon.ico file contain at least 16×16, 24×24, 32×32 and 64×64.

I just launched a free online tool that will create favicons like this at: http://iconifier.net

See the readme page on the website for more links to the latest favicon information.

share|improve this answer
Thanks for your tool, i just used it with great success! A "precomposed" option would be great though, so one wouldn't have to manually rename the apple icon files for precomposed icons. Cheers! – padde May 11 at 13:41

Creating Favicons for Retina Displays http://daringfireball.net/2013/01/retina_favicons

share|improve this answer

Faviconer.com - designed for creating 16x16 and retina 32x32 favicon .ICO files. You can draw a new icon from scratch or you can upload any graphic image and convert it to .ICO format.

http://faviconer.com

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.