How do I get a icon/ logo on my address bar?

Virtualz

Junior Member
Joined
Aug 21, 2011
Messages
152
Reaction score
38
I see these cool samll logos icons on the web address bar how do I make one of these?
 
Make a search for a favicon in google. Thats what its called. There are some online free tools to make them. If I am right they are either 16x16px, 32x32px, or some bigger sizes which arent supported backwards.
 
Here's how it works:

- Create 20 page report on everything about your site, mail it to the following:
- Send $5,000 to IE/FF/Chrome/Opera, etc. Totals around $20,000 all said and done.
- They review you site takes 6 months.
- You send in the Logo and they put it up for you.
- Then approval is needed from the major search engines, 2 months and this fee is $3,000 per each site.
- You'll need your host to approve it which is typically another $200 to $250.
- You'll need ICANN to also approve this, which is $1,000, this takes another 4 months.

What else am I missing... :hand:

Then you finally get that little Icon bro!
 
just create whatever image it is that you want to appear there. 16x16 in size, call it favicon.ico and upload it to your root public directory. It will automatically appear as the icon in the address bar after you do that.
 
just create whatever image it is that you want to appear there. 16x16 in size, call it favicon.ico and upload it to your root public directory. It will automatically appear as the icon in the address bar after you do that.

You forgot that you have to add the following HTML code in the head of your web pages. Anywhere in between <head> & </head> tags.
Code:
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
 
The favicon can be 8x8, 16x16, 32x32 or 64x64 pixels. 16x16 IIRC is the most common with 32x32 right after.j

Just put favicon.ico in your root folder. Do not put it elsewhere! Even if there is nothing in the heading area (like in the previous post suggests, which I do too) then some browsers will still try and fetch it. Though it needs to be favicon.ico . Not fav.ico , Favicon.ico , icon.ico or anything else. favicon.ico
 
You forgot that you have to add the following HTML code in the head of your web pages. Anywhere in between <head> & </head> tags.
Code:
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />

you don't have to do that, browsers will still request favicon by default without this line added..
 
its biological name is faviconus iconicus, a subsect of the bitmapus logus family. shrink your logo to about 100x100, save it as bmp, rename it to favicon.ico, and upload it to your www folder and you're all set.
 
Back
Top