tags:

views:

715

answers:

4

I'm able to show the icon without problem on Firefox, but on Internet Explorer 7, the icon cannot be shown. Can someone please paste the code and try on your Internet Explorer 7? What missing did i do?

<html>
<head>
<link rel="shortcut icon" type="image/vnd.microsoft.icon"
      href="http://yourhtmlsource.com/favicon.ico"/&gt;
</head>

<body>
</body>

</html>
A: 

Try this:

<link rel="icon" type="image/x-icon" href="favicon.ico" />
ChrisF
type should be "image/x-icon" if you're not using the IANA registered "vnd.microsoft.icon"
random
A: 

Saving a JPEG of GIF file as .ico might work in some browsers. But .ico is actually a different file format.

Try this online favicon generator: http://www.degraeve.com/favicon/

Edit: Just downloaded your icon. It has the right file format. But I could also see your icon with IE7 (on Vista).

Erik
+1  A: 

Try cleaning the cache, favIcons gets cached until "the end of eternity".

I normally, to be sure, upload my icon to http://www.favicon.cc/ and re-download it from there. Works every time!

Andrea
Definitely clear your cache, IE is a bit pokey about checking for new favicons.
Curtis Tasker