Problem with shortcut icon in firefox

For me, favicon does not appear in FireFox 3.6, but it works in IE7.
In Firefox, when the page loads, I can see my icon.
But as soon as the page is fully loaded, I do not see my icon.
And if I refresh my page, favicon icon appears.

This is what I call my badge.

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

What could be wrong?

+2
source share
1 answer

Just make sure to always put the icon in the root directory of your site and name it favicon.ico.


And please change your icon this way
<link rel="icon" href="/favicon.ico" />

Read this: rel = "shortcut icon" is considered harmful

+8
source

All Articles