Had to put a favicon on one of my sites today and just about forgot how it was done. If you are wondering what a favicon is simply look in your browser's tab at the WB with the red square around it.
I think having this makes your site look a bit more professional than just a blank page or the e in your browser window.
How do you accomplish this?
1) Once you have your logo or picture prepared reduce the size of it to 16x16 and save it as an .icon file
2) FTP the new file to your root directory
- You can check the ftp by inputting h ttp://mysite.com/favicon.ico in the browser.
3) Now insert this code into your pages, at a minimum put it on the index page. For blogs you will edit your theme and insert it into the header.php below the HEAD tag
- <link rel="shortcut icon" href="/favicon.ico"> or
- <link rel="shortcut icon" href="http://www.mysite.com/favicon.ico">
4) Just wait a bit and it will appear. Took about 30 minutes on the site I completed today.
Hope some will find this a useful tip.