It's the favicon you mean... right? Add the following code <link rel="shortcut icon" href="favicon.ico"> anywhere between the <head> and </head> tags. You need to make a 16x16 pixel .ico file. It's easy, you can do it in Paint... And after that, upload it to the theme directory.
True, but there's no need to add that line of code. It helps with IE6 if i'm not wrong, but for IE7, FF and opera, there's no need. And yeah, it'd suggest you to look in google for something like "favicon generator", it should bring you some results of different ways of making it
i put the <link rel="shortcut icon" href="favicon.ico"> inbetween the head tags, and put the .ico in the root folder where all the files are for that theme, its still not showing up
Where you have added this code (in which file) You need to add this code in header.php in your template just before </head>. Like this. <link rel="shortcut icon" href="/favicon.ico"> </head> I am using it at my blog without having any issue. Check it Travel with ease blog DON.
i got it to work now using this code instead.. <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" /> thx to all
Yep, the following code is correct. <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" /> If you want to download favicon plugin, you can download it from my blog post (http://money-making-tools.tipsonclicks.com/wordpress/download-wordpress-favicon-plugin).