This is a fun one. All you branders out there will enjoy learning how to put that little icon next to your URL in the address bar of your browser.

Here are some examples:
The image is called an icon image. The file is a .ico image which is created from a bitmap image.
- We need to create the image. Go to your image editor (Photoshop, Paintshop, Fireworks, etc.) and open up a copy of the logo you want on your site. Shrink it down to 16x16. This means the pictures dimensions are only 16 pixels wide by 16 pixels high. You may have to play with your editor to make the image look clear and not blury.
- Save the image as a bitmap file (if your image editor will save the image as a .ico image then do that instead and skip step 3). The file extension will be .bmp.
- Now we need to convert the image into an .ico image. I don't have a specific program to recommend but I did go to http://www.download.com/ and searched for "ico". I downloaded QTam Bitmap to Icon 3.5 just to try it and it worked great for me (little disclaimer here - I take NO responsibility for this 3rd party software). Step through the options of the conversion software to convert your bitmap into a .ico file. Be sure to select 16x16 if you are given options for file dimensions. Save the file as favicon.ico.
- Move the new .ico file (favicon.ico) to your server in the images directory (or where ever you store your images).
- Add the following html to your header tags: <LINK REL="shortcut icon" HREF="http://www.yoursite.com/images/favicon.ico"> You'll need to adjust the HREF= url to point to the right file on your server.
Here is a simplified view of what your html might look like:
<html>
<head>
<title>Favicon Explained</title>
<META NAME="description" CONTENT="Favicon Explained.....">
<META NAME="keywords" CONTENT="favicon explained, favicon conversion......">
<LINK REL="shortcut icon" HREF="http://www.mycoolsite.com/images/favicon.ico">
</head>
<body>
...etc. etc. ...
Alrighty. That'll do it. Have fun with it.
Find other ways to personalize your site.

Comments (44)Subscribe to CommentsComment