vote up 9 vote down star
5

Other than the fact that PNG is a more common image format, is there any technical reason to favor favicon.png vs. favicon.ico?

I'm supporting modern browsers which all support PNG favorite icons.

flag

5 Answers

vote up 10 vote down check

png allows you to use alpha-channel transparency, which can look nicer on browsers that display the icon on various backgrounds (such as colored/gray tabs versus a white address bar) - especially if your icon isn't blocky in nature.

Modern browsers all allow specification of a favicon via a <link> tag in the page content, so you can specify a PNG favicon there while keeping a not-so-pretty ico favicon in the directory tree if you desire IE6 compatibility.

link|flag
Yeah, that's a good reason :) – voyager Aug 27 at 22:45
vote up 0 vote down

Avoid PNG in any case if you want reliable IE6 compatibility.

link|flag
4  
There's no reason why you can't use both - an ico in the directory tree for IE6 and a PNG specified via a <link> in the page code for modern browsers. – Dav Aug 27 at 22:47
Ah, good solution, thanks. – Wahnfrieden Aug 27 at 22:50
vote up 5 vote down

If you're going for a PNG, you still have to create a favicon.ico as well. Most browsers (just tested with Safari 4, Firefox 3.5 and IE8) always request it. Yahoo! suggests you make it small and cacheable.

And you don't have to do it for the alpha transparency either. ICO files support alpha transparency just fine, though hardly any tools allow you to create them. I've used Dynamic Drive's FavIcon Generator several times to create favicon.ico files with alpha transparency. It's the only place I know of that can do it.

link|flag
vote up 3 vote down

.png files are nice, but .ico files provide alpha-channel transparency, AND give you backwards compatibility.

Have a look at which type StackOverflow uses for example (note that it's transparent):

<link rel="shortcut icon" href="http://sstatic.net/so/favicon.ico"> 
<link rel="apple-itouch-icon" href="http://sstatic.net/so/apple-touch-icon.png">

The apple-itouch thingy is for iphone users that make a shortcut to a website.

link|flag
vote up 0 vote down

The theoretical advantage of *.ico files is that they are containers than can hold more than one icon. You could for instance store an image with alpha channel and a 16 colour version for legacy systems, or you could add 32x32 and 48x48 icons (which would should up when dragging a link to Windows explorer).

This good idea, however, tends to clash with browser implementations.

link|flag

Your Answer

Get an OpenID
or

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