Once you get a well known blog established, one often overlooked, yet simple task is adding a favicon for the blog.
The first step is the most difficult - and is mainly why I took a long time, in setting up an icon, for this blog.
Once you create the image files, just use the Blogger "Favicon" wizard, on the dashboard "Layout" page.
Here's what you probably have, right now:
Here's what you need:
Add the two "link" records at the end of the template header, immediately preceding the "</head>" record. It is important to add them after the "</b:skin>" entry.
- Design a logo that's recognisable in a 16 px x 16px size image.
- Create two logo files, one a .ico, the other a .png. You can use IrfanView, or another free graphics tool, to do this. For discussion about the two files, see WikiPedia: Favicon.
- Upload the logo files to an image hosting server. You may find the free hosting service offered by IconJ to be useful.
- Add the favicon definition into the blog HTML. Your blog has a default favicon (the white on orange "B"), and you'll have to override that..
The first step is the most difficult - and is mainly why I took a long time, in setting up an icon, for this blog.
Once you create the image files, just use the Blogger "Favicon" wizard, on the dashboard "Layout" page.
Here's what you probably have, right now:
<head>
...
<link href='http://www.blogger.com/favicon.ico' rel='icon' type='image/vnd.microsoft.icon'/> <<== Default favicon - provided by Blogger (and built in to the template)
Here's what you need:
<head>
...
<link href='http://www.blogger.com/favicon.ico' rel='icon' type='image/vnd.microsoft.icon'/> <<== Default favicon - provided by Blogger (and built in to the template)
...
]]></b:skin>
<link href='http://www.yourhost.com ... /favicon.ico' rel='icon' type='image/vnd.microsoft.icon'/> <<== Your custom favicon .ico file, Microsoft Browser compatible
<link href='http://www.yourhost.com ... /favicon.png' rel='icon' type='image/png'/> <<== Your custom favicon .png file, for non Microsoft browsers
</head>
Add the two "link" records at the end of the template header, immediately preceding the "</head>" record. It is important to add them after the "</b:skin>" entry.
Comments
I was under the impression that all you needed was the favicon.ico
I was putting the code right below the HEAD element. It made all the difference to add it just before the HEAD element closes.
Thanks!!