Recent Topics

1 Mar 24, 2006 04:51    

I've seen a few errors with "GET /favicon.ico HTTP/1.1" 404 "

I guess this happens when a user places a book mark or adds a site to their favorites...

does anybody use a favIcon for their blogs?

I hope this is the right place for the question.

Edgar

2 Mar 24, 2006 05:14

I do. Older versions of IE always looked for a favicon. I'm not sure about newer versions. Favicons are technically valid now according to those who set the 'rules', so if you want one you should do some searching for info about them. You'll find there are ways to get almost any image turned into a favicon if you want, and you'll find the code to make them happen.

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

The second one is technically not good because it's two words - "shortcut icon", and you do NOT have to name your favicon "favicon.ico". I use both and I use that 'official' name to humor old IE installations. Oh it goes in the head section of your page, which means you would add it to your skins/skinname/_main.php file.

3 Mar 24, 2006 20:03

I do, I'm vain :) and I hate those 404 errors

4 Mar 25, 2006 18:31

Thanks for the help and sample code. I added my icon


Form is loading...