vote up 1 vote down star

I'm showing favicons of websites in a list, as <img /> elements.

some websites serve them as:

<link rel="icon" type="image/x-icon" href="favicon.ico" />

and some serve them as:

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

IE doesn't show the favicons images of those of don't have type="image/x-icon".
I cannot control how websites serves their favicons, so what can I do from my side?

flag

73% accept rate
2  
What is exactly that you want to do? – voyager Sep 17 at 14:32
So do you want it to work like it does on the About page? stackoverflow.com/about (down the bottom for the moderators) – Crises of Identity Sep 17 at 14:46
yes, like there exactly – vsync Sep 17 at 15:01
Can you show an example of a site that you can't show the favicon of? – Crises of Identity Sep 17 at 15:04
<img src="sfist.com/favicon.ico"; alt="" /> – vsync Sep 17 at 15:36

1 Answer

vote up 2 vote down check

I think the best thing to do is convert them to another format. If you are displaying the icons manually then you could download each, convert it with an image program, and upload it to your site.

If you're doing it automatically you'll need to look at whatever image-handling tools you get on the server-side. If you're using PHP, that'd be the GD or ImageMagick libraries. Just convert to PNG for example, and cache it on your site.

If IE doesn't display .ico files inline with a page, then it's unlikely you're gonna be able to make it display without doing some kind of processing. At the most simple level, you can just read the external images and serve them up as the right mime type, without converting them.

link|flag
I agree - much better than trying somehow to make browsers (esp. non-IE ones) display ICOs in IMGs – Eli Krupitsky Sep 17 at 23:39
Non-IE ones display them correctly always. I'm on .NET :( they're all dynamically loaded, thousands of them probably. I know GD for PHP, and thought about it, but its too much work for such a simple thing. thanks for your kind help! – vsync Sep 18 at 8:41
I'm sure .net has some image handling functions. But you should be able to simply serve up files yourself with a different mime type, without conversion. – DisgruntledGoat Sep 18 at 13:56
@DisgruntledGoat - How can I do that ? – vsync Sep 21 at 7:05
1  
I don't know exactly how in .net, but you'd have a script with a parameter of the icon file. The script would set a header of image/x-icon and then read the file passed in and simply spit it out. In PHP you'd just use the header function and curl_exec. May be worth asking a separate question targeted directly towards .net. – DisgruntledGoat Sep 21 at 15:21
show 1 more comment

Your Answer

Get an OpenID
or

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