Favicons
Posted by: dolly413
Posted on: 2005-11-19 19:31:00
Does anyone know how to load a favicon or a picture in the address bar?thanks.
Posted by: dolly413
Posted on: 2005-11-19 19:31:00
Does anyone know how to load a favicon or a picture in the address bar?thanks.
Posted by: matttail
Posted on: 2005-11-19 20:04:00
I did a google search for Favicon tutorial and found this page.
-Matttail
Posted by: TorbenGB
Posted on: 2005-11-20 03:27:00
Many browsers look in the root directory for a file named "favicon.ico", so often you don't even need any HTML code but just put the file there:
http://g-b.dk/favicon.ico (if "g-b.dk" is your website)
and you can even "overrule" this in subdirectories if you have a different file placed in
http://g-b.dk/subdirectory/favicon.ico
You can also use one of these code snippets to specify the icon in HTML:
<link rel="icon" href="http://g-b.dk/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="http://g-b.dk/favicon.ico" type="image/x-icon" />
Posted by: ardco
Posted on: 2005-11-20 06:46:00
According to this, you should be able to save an image as a favicon using (free) Gimp.
Good luck,
BobS
Posted by: dolly413
Posted on: 2005-11-20 06:55:00
Thanks everyone!