Quick and simple question

Woraug

New Member
Messages
18
Reaction score
0
Points
0
I want to put a little image next to my sites URL, like this:

URLimage.jpg


How do I do this?
 

hahoozhafax

New Member
Messages
54
Reaction score
0
Points
0
Thats called a favicon.

It's basically a 16x16 .ico file that sits in your site's main directory. To create the file you can either use photoshop or there are several online Favicon convertors such as this:

http://www.chami.com/html-kit/services/favicon/

Save the file as 'favicon.ico'. Then simply upload the file to your site's main directory and insert the following code into the head tag of every page you want the favicon to appear on.

Code:
                        <link REL="SHORTCUT ICON" href="http://YOURSITE/favicon.ico">
Be sure to replace "YOURSITE" with your own domain name.

And thats it. Have fun.
 
Top