vote up 1 vote down star

I have a site using a custom favicon.ico. The favicon displays as expected in all browsers except IE. When trying to display the favicon in IE, I get the big red x; when displaying the favicon in another browser, it displays just fine. The page source includes and it does work in other browsers. Thanks for your thoughts.

The source of the issue was the file was a jpg renamed to ico. I created the file as an ico and it is working as expected. Thanks for your input.

flag
what version of IE? – Gulzar Sep 23 '08 at 16:20
Would you mind showing us the html you're using to specify the icon? – sblundy Sep 23 '08 at 16:20
You mean when you navigate to the URL directly, it shows a broken image too? – Jim Sep 23 '08 at 16:22

5 Answers

vote up 1 vote down check

Right you've not been that helpful (providing source would be have been really useful!) but here you go... Some things to check:

Is the code like this:

<link rel="icon" href="http://www.example.com/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="http://www.example.com/favicon.ico" type="image/x-icon" />

Is it in the <head>?

Is the image a real ico file? (renaming a bitmap is not a real .ico! Mildly different format)

Does it work when you add the page as a bookmark?

link|flag
If you haven't made the .ico properly, try using this site to generate a *real* .ico: favicon.co.uk – Oli Sep 23 '08 at 16:28
vote up 0 vote down

Care to share the URL? Many browsers cope with favicons in (e.g.) png format while IE had often troubles. - Also older versions of IE did not check the html source for the location of the favicon but just single-mindedly tried to get "/favicon.ico" from the webserver.

link|flag
vote up 0 vote down

Did you try putting the icon at the URI "/favicon.ico" ? IE might not know about the link tag way of referring to it.

More info from W3.

link|flag
vote up 0 vote down

I once used a PNG as a favicon.ico and it displayed in all browsers except IE. Maybe something in the file causes it to not be recognized by IE. Also make sure it's 32x32. Don't know if it matters though. But it's something I had to make sure in order to see it in IE.

Hope it helps. Try to use an ico file from some place else just to see if that works.

link|flag
vote up 0 vote down

I wrote a very detailed FAQ for this for IE7. See: http://jeffcode.blogspot.com/2007/12/why-doesnt-favicon-for-my-site-appear.html

link|flag

Your Answer

Get an OpenID
or

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