vote up 16 vote down star
9

What is currently the best way to get a favicon to display in all browsers that currently support it?

Please include:

  1. Which image formats are supported by which browsers.

  2. Which lines are needed in what places for the various browsers.

flag

80% accept rate

9 Answers

vote up 23 vote down check

I go for a belt and braces appraoch here. I create a 32x32 icon in both the .ico and .png formats called favicon.ico and favicon.png. The name doesn't really matter unless you are dealing with older browsers.

  1. Place favicon.ico at your site root to support the older browsers (optional and only relevant for older browsers.
  2. Place favicon.png in my images sub-directory (just to keep things tidy).
  3. Add the following HTML to the <head/> element.
<link rel="icon" href="/images/favicon.png" type="image/png" />
<link rel="shortcut icon" href="/favicon.ico" />

Please note that:

  • The MIME type for .ico files was registered as image/vnd.microsoft.icon by the IANA.
  • IE will ignore the type attribute for the shortcut icon relationship and since IE is the only browser to support this relationship you need not supply it.

I recently created a Wiki page on how to do this.

link|flag
OK, I'm having a 'Microsoft is getting on my nerves' day. I can't get this to work in Internet Explorer, despite the fact that it shows the favicon for the stackoverflow site. Are there any other settings that affect this, such as doctype? – belugabob Nov 27 '08 at 11:54
FYI - I found the answer. If you refer to the site via localhost:8080/index.html , it doesn't work - if you use the actual name of the machine (machineName:8080/index.html) everything functions as you'd expect. I can't even begin to understand this behaviour - anybody care to try? – belugabob Nov 27 '08 at 12:23
Update - the behaviour is caused by the browser caching the icon. Clearing the temporary internet files will cure this, if you feel happy losing your cache. – belugabob Nov 27 '08 at 14:47
Would it be neater to put the IE version of the link in an IE conditional comment? – EoghanM Dec 2 '08 at 10:40
3  
32x32?? Isn't 16x16 the norm? – Eduardo Molteni Jun 4 at 13:47
vote up 3 vote down

There is also a site where you can check how the favicon of any page is made

getfavicon.org

There you can see a tutorial about making favicons, image types and resolutions, it's nice!

link|flag
vote up 1 vote down

Just in case anyone is wondering how to create .ico files, there are several online tools that can help. A Google search will reveal many such tools:

Google search for: favicon creator

link|flag
vote up 2 vote down

IE6 cannot handle PNG's correctly, be warned.

link|flag
vote up 10 vote down

It might also be worth including the 'favicons' for the iPhone here as well; that is if the user chooses to add your website to their home screen. The code used in this case is as follows:

<link rel="apple-touch-icon" href="touch.png" />

The dimensions should be 57x57 pixels. Alternatively you can omit the link tag and just put a file called 'apple-touch-icon.png' in the root directory of your website.

link|flag
vote up 2 vote down

Favicon must be an .ico file to work properly on all browsers.

Modern browsers also support PNG and GIF images.

I've found that in general the easiest way to create one is to use a freely available web service such as favicon.cc.

link|flag
vote up 6 vote down

I use .ico format and put the following two lines within the <head> element:

<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
link|flag
vote up 2 vote down

Wikipedia to the rescue

link|flag
vote up 2 vote down

Having a favicon.* in your root directory is automatically detected by most browsers. You can ensure it's detected by using:

 <link rel="icon" type="image/png" href="/path/image.png" />

Personally I use .png images but most formats should work.

link|flag

Your Answer

Get an OpenID
or

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