up vote 43 down vote favorite
26
share [g+] share [fb]

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.

link|improve this question

75% accept rate
feedback

8 Answers

up vote 58 down vote accepted

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.
link|improve this answer
1  
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
1  
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
2  
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
2  
Would it be neater to put the IE version of the link in an IE conditional comment? – EoghanM Dec 2 '08 at 10:40
4  
32x32?? Isn't 16x16 the norm? – Eduardo Molteni Jun 4 '09 at 13:47
feedback

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|improve this answer
Good addition to the answer. – subkamran Apr 9 '11 at 16:02
While you're at it, read this: mathiasbynens.be/notes/touch-icons – Zach L Nov 11 '11 at 20:29
feedback

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|improve this answer
feedback

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|improve this answer
favicon.cc rules! – Jonathan Barbero Jan 15 '10 at 4:55
feedback

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|improve this answer
feedback

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|improve this answer
1  
IE6 cannot handle PNGs correctly. – donut Dec 31 '09 at 0:59
feedback

Wikipedia to the rescue

link|improve this answer
feedback

IE6 cannot handle PNG's correctly, be warned.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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