How to add customized favicon to a wordpress blog?
I've just setup an Wordpress blog, but I can't figure out how to make a customized favicon to appear in the browser, please help me out. Please #__#
Public Comments
- You have to have an account that will allow you to modify the html. The favicon code should be added in the <head> section of the page. I usually add the favicon in two formats to accommodate all the different browsers. Here is an example: <html> <head> <link rel="icon" href="my_icon.ico" type="image/x-icon" /> <link rel="shortcut icon" href="my_icon.ico" type="image/x-icon" /> </head> <body> Content </body> </html>
Powered by Yahoo! Answers