- Impact
- 1
Hi, could anyone tell me how in the address bar you can make it have a logo instead of the IE logo. Like NamePros have their logo in that address bar.
Thanks in advance.
Thanks in advance.


<link rel="shortcut icon" type="image/ico" href="favicon.ico" />
<html>
<head>
<title>Awesome Site</title>
<link rel="shortcut icon" type="image/ico" href="favicon.ico" />
</head>
<body>
<p>Cool site man!</p>
</body>
</html>
IconPacks said:Try AWIcons: http://www.tucows.com/preview/355940 I use the Pro version but the Lite version is freeware and should be capable of making some nice favicons.
Photoshop and Dreamweaver are different, because photoshop is a graphics program and dreamweaver is for code.mis_chiff said:LeetPCUser, You mentioned a plugin for Photoshop,
does this only work with Photoshop?
or can Dreamweaver 8 be used instead?
thanks
JYM said:Photoshop and Dreamweaver are different, because photoshop is a graphics program and dreamweaver is for code.
I use a program called JosesSoft Image Icon Converter, which converts any image into various, different sized icons including the 16x16 icon used for your favicon. You do not actually need to put any code on your pages unless your favicon.ico is in a different location other than the root, or if you need to switch to another favicon.
Just upload your favicon.ico to your public_html directory.
What you’re looking for is called a favicon.
A favicon is the small icon that appears in the browser tab, address bar, bookmarks, and sometimes browser history instead of the default browser icon. If a site like NamePros shows its own logo there, it means they added a favicon to their website.
To do it, you usually need to:
- Create a small square version of your logo, commonly 16x16, 32x32, or 48x48 pixels
- Save it as .ico, .png, or sometimes .svg
- Upload it to your website
- Add it in your site’s header so the browser can read it
A common example looks like this:
<link rel="icon" href="/favicon.ico" type="image/x-icon">
If you use WordPress, you usually do not need code. You can add it from the Site Identity or Customizer settings by uploading your Site Icon.
So in simple words:
You do not replace the IE logo directly. You add a favicon to your website, and the browser shows that icon for your site.


