Hi ul, I have just an easy question, the icon besides the <title> usually is same as the logo, which I don't know how exactly to make it. It is an example below: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <meta http-equiv="content-language" content="en" /> <meta name="author" content="Hannaspice" /> <meta name="keywords" content="" /> <meta name="description" content="" /> <meta name="robots" content="all" /> <title>Digitalpoint<?php print $title_block; ?></title> And how can I show this icon onto homepage?
Name the icon file as favicon.ico normally browsers detect it and show it without putting a meta code You can also put this code in the head section <link rel="icon" href="/favicon.ico" type="image/x-icon">
Also, if you have a file that needs to be converted to an ico, I can do that for you if you post it somewhere for me.
Most latest browsers even support .gifs these days which is why you see some cool animated stuff against your bookmarks or in the favicon spot of your address bar. But do remember that you are leaving the older browsers without anything unless you are willing to provide a .ico for the older ones and .gif for the newer browsers. Just a bit too complicated for brand promotion.
@Beginn3R : You seem to be true to your username Jokes apart. We can use animated GIFs as favicions today. Try <link rel="shortcut icon" href="favicon.ico" > <link rel="icon" href="animated_favicon.gif" type="image/gif" > Code (markup): favicon.ico is for the older browsers while the animated_favicon.gif takes care for the newer browsers. For now, Firefox supports this for sure as its UI uses XML, CSS and renders images while IE does not but who cares