0

Why isn't this website's favicon showing in chrome or firefox?

It is in the root of the server at http://the-irf.com/favicon.ico and is in the .ico format so it should be supported by those browsers.

JayGatz
  • 271
  • 1
  • 8
  • 18

3 Answers3

0

Whether or not a browser will request favicon.ico by default, without it being referenced in the source, likely varies from browser to browser. If you'd like browsers to definitely use it, then include the following within the head of the HTML:

<link rel="shortcut icon" href="http://the-irf.com/favicon.ico" />
Kyle
  • 2,822
  • 2
  • 19
  • 24
  • Ah, I see. But what about in chrome in [this site](http://guggle.co/). It is not working even though it has been pointed to explicitly. – JayGatz Jun 05 '13 at 00:19
  • Are you sure that the file format is correct? How was the icon created? The source looks okay. – Kyle Jun 05 '13 at 16:31
  • I think so. I created it here: http://converticon.com/. How else should I or how should I be converting it properly? I run Mac OS X. – JayGatz Jun 05 '13 at 23:32
0

call it explicitly

<link rel="shortcut icon" href="/favicon.ico" />

http://www.html-kit.com/favicon/validator/

exussum
  • 18,275
  • 8
  • 32
  • 65
  • Ah, I see. But what about in chrome at [this site](http://guggle.co/). It is not working even though it has been pointed to explicitly. – JayGatz Jun 05 '13 at 00:18
  • Exactly my point, it is not working in chrome even though it has been explicitly defined in the source just like your answer. How can it be fixed so that it shows? – JayGatz Jun 05 '13 at 00:31
0

When writing a web server I came across a possible answer to this question. If chrome requests a favicon and receives a 404 Not Found response then it will no longer request it. Even if you clear your cache / hard reload it will no longer ask for it. The other answer's responses work as well as: How do I force a favicon refresh

Community
  • 1
  • 1
Elliot E
  • 452
  • 3
  • 14