how do they get an icon to show.....

  • Thread starter Thread starter Supra
  • Start date Start date
S

Supra

how do they get an icon to show up in the URL address box, bookmark?" I
got combobox1_drawitem working. I posted code recently ago.
i do understand when i looked in view page code... and i see example
like this....

'<link rel="icon" href="/favicon.ico" type="image/ico">
'<img src="/intl/en_ca/images/logo.gif" width=276 height=110
alt="Google">
and some more like powerbuilder or powerpoint...some used css, etc
regards,
supra
 
I think that you are a bit out of topic but i will try to answer. :)

From what I know in order to do this you need to place an icon, not sure of
size, i think 16x16 in the *root* folder of your site (where index.html is)
AND name it favicon.ico.

I think only Internet explorer can then show the icon next to the URL. Not
sure if later versions of Netscape, etc. can do this too. This is because if
favicon.ico exists then I.E. will automatically load it and place it next to
the url.

However, right now i cannot see it at the codeproject website, despite the
fact that it's there. Maybe some settings at my browser at work. google
favicon and you'll get the details and possibly examples and browser
settings.

Hope it helps.
-steve
 
i do understand. steve.
I think that you are a bit out of topic but i will try to answer. :)

From what I know in order to do this you need to place an icon, not sure of
size, i think 16x16 in the *root* folder of your site (where index.html is)
AND name it favicon.ico.

I think only Internet explorer can then show the icon next to the URL. Not
sure if later versions of Netscape, etc. can do this too. This is because if
favicon.ico exists then I.E. will automatically load it and place it next to
the url.

However, right now i cannot see it at the codeproject website, despite the
fact that it's there. Maybe some settings at my browser at work. google
favicon and you'll get the details and possibly examples and browser
settings.

Hope it helps.
-steve


"Supra" <[email protected]> a écrit dans le message de %[email protected]...
 
Supra said:
how do they get an icon to show up in the URL address box, bookmark?" I
got combobox1_drawitem working. I posted code recently ago.
i do understand when i looked in view page code... and i see example
like this....

'<link rel="icon" href="/favicon.ico" type="image/ico">
'<img src="/intl/en_ca/images/logo.gif" width=276 height=110
alt="Google">
and some more like powerbuilder or powerpoint...some used css, etc
regards,
supra

The way I do it on my page:
place an ico 16x16 somewhere, then place the following line in the header
<link rel="shortcut icon" href="urltoicon" type="image/x-icon" />

Mozilla will show the icon right off the bat. IE will show it when it's
bookmarked.

Rinze
 
thank

C-Services Holland b.v. said:
The way I do it on my page:
place an ico 16x16 somewhere, then place the following line in the header
<link rel="shortcut icon" href="urltoicon" type="image/x-icon" />

Mozilla will show the icon right off the bat. IE will show it when
it's bookmarked.

Rinze
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top