Forum Moderators: open

Message Too Old, No Replies

how do I change the symbol / message in links?

I see this nifty stuff all the time

         

hypersloth

11:20 am on Jan 6, 2004 (gmt 0)

10+ Year Member



Hi, I just joined, and the answer to this has probably been glaring at me the whole time as I've sifted through faq's, but I guess I just didn't know how to ask properly...
anyway, sometimes when I add a site I like to my links (using IE6), and then I look at it in the drop-down menu, it will have a new icon and text.
How do I fashion my site to do the same for people who add me?
Secondly, do I want to? As amazing as I've found this site to be, I notice the link just has the plain old "e" sitting on a page icon...

Sanenet

11:31 am on Jan 6, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi hypersloth,

You're thinking of "favicon.ico", which is an IE 4+ feature. Make a bmp, size 32x32 (I think?), name it favicon.ico and drop it into your web root. Should do the trick.

hypersloth

11:52 am on Jan 6, 2004 (gmt 0)

10+ Year Member



thanks for the prompt reply - love this place - I've got the icon ready, but I still don't know where/how to place that or the text I want to show in their link menu though.

divaone

12:30 pm on Jan 6, 2004 (gmt 0)

10+ Year Member



hi hypersloth,

go to [favicon.com...] . all your answers are there. be sure to pay attention to the glitchs that are addressed. while using a favicon is not harmful, it can be a bit buggy.

hypersloth

1:56 pm on Jan 6, 2004 (gmt 0)

10+ Year Member



thanks for the sponsored link, but I'm still just looking for the actual html code to have my page normally display something like "goldfish", but in someone else's links, the shortcut would say "your mom" or something... and if I could have an icon showing Elvis or whatever, that'd be cool too...

balinor

2:09 pm on Jan 6, 2004 (gmt 0)

10+ Year Member



The 'text' that is displayed in their favorites menu is controlled by the page title.

<title>Your Title</title>

It goes in the <head> tag of your HTML. The actual icon file goes in the same directory your index.html file is in. Hope this helps!

hartlandcat

2:15 pm on Jan 6, 2004 (gmt 0)

10+ Year Member



You're thinking of "favicon.ico", which is an IE 4+ feature.

Favicons are not *just* an IE 4.0+ feature. Actually, they work in most reasonably recent browsers. Actually, most browsers other than IE also display the favicon in the address bar on the left hand side of the url.

aevea

7:25 pm on Jan 6, 2004 (gmt 0)

10+ Year Member



They're also super helpful with tabbed browsing in mozilla and opera since the page title doesn't always tell you the site.

I dont think it's necessary to add any code at all, as most browsers automatically check for them (that's actually why I made one -- to get those errors out of my log) but if you want, you can add something like this to your <head>:

<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />

Adam

willybfriendly

7:43 pm on Jan 6, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Actually, most browsers other than IE also display the favicon in the address bar on the left hand side of the url.

IE will too. You just have to reach up there in the address bar and shake that little IE logo with your mouse pointer.

WBF

divaone

4:17 am on Jan 7, 2004 (gmt 0)

10+ Year Member



How do I fashion my site to do the same for people who add me?

for this, favicon.com will provide all the how-to's.

thanks for the sponsored link, but I'm still just looking for the actual html code to have my page normally display something like "goldfish", but in someone else's links, the shortcut would say "your mom" or something... and if I could have an icon showing Elvis or whatever, that'd be cool too...

if you are looking for a way to change the standard IE icon, look for a program called 'Internet Explorer Personalizer'. if you want your own favicon for sites in your favorites list, you will have to change the default IE icon throughout, but this will change ALL your icons. you can make the shortcut name anything you want when you save the bookmark, or by right-clicking on the shortcut and changing the name.

Sanenet

7:43 am on Jan 7, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Ah, and I remember when they said it wouldn't catch on... [nostalgia!]

What is the world coming to when IE is remembered for favicon and NN for <blink>?

TheDoctor

5:19 pm on Jan 10, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



That should be

<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />

(note the slash in red).

This will make Mozilla, Opera, etc use the IE default favicon. You can, of couse, call the icon something else with these browsers or put it in different directory that the web root. Just change "/favicon.ico" to whatever you want.