Welcome to the MacNN Forums.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

You are here: MacNN Forums > Software - Troubleshooting and Discussion > Developer Center > hOw tO cReaTe thiS iCon fOr yA WebsitE ???

hOw tO cReaTe thiS iCon fOr yA WebsitE ???
Thread Tools
Forum Regular
Join Date: Jun 2003
Location: Earth
Status: Offline
Reply With Quote
Feb 3, 2004, 10:03 AM
 


Does anyone knows how to create your own icon for your website using Mac ????
Plsssss


17" widescreen LCD, 1GHz PowerPC G4,
1GB DDR266 SDRAM, 80GB Ultra ATA HD,
NVIDIA GeForce4 MX, 64MB DDR video memory
     
Grizzled Veteran
Join Date: Nov 2003
Location: Hebburn, UK
Status: Offline
Reply With Quote
Feb 3, 2004, 11:05 AM
 
You can use http://www.iconfactory.com/iconbuilder.asp or somethign else (use google).

Then save what you make as favicon.ico and include the following in your head tags:

Code:
<link rel="Shortcut Icon" href="/favicon.ico" type="image/x-icon" />
where favicon.ico is saved in the root of your web site - you can obviously change this.

AFAIK that's all there is to it. I'm not sure, but I think you can use gif's etc as well instead of a .ico - if you can, then change the above link element accordingly.
     
Grizzled Veteran
Join Date: Nov 2003
Location: Hebburn, UK
Status: Offline
Reply With Quote
Feb 3, 2004, 11:09 AM
 
Just found this on google - seems to be what's needed for all your favicon needs

http://www.favicon.com/
     
Forum Regular
Join Date: Jun 2003
Location: Earth
Status: Offline
Reply With Quote
Feb 4, 2004, 12:24 AM
 
thanks a lot...

do i have to save the file name as "favicon.ico" ???
is it a MUST ? or i can save as other filename??


17" widescreen LCD, 1GHz PowerPC G4,
1GB DDR266 SDRAM, 80GB Ultra ATA HD,
NVIDIA GeForce4 MX, 64MB DDR video memory
     
Registered User
Join Date: Jul 2003
Location: San Jose
Status: Offline
Reply With Quote
Feb 4, 2004, 01:17 AM
 
aaahhhhhh, the powers of a search
     
Clinically Insane
Join Date: Nov 1999
Status: Offline
Reply With Quote
Feb 4, 2004, 03:39 PM
 
Originally posted by hunkhuang:
thanks a lot...

do i have to save the file name as "favicon.ico" ???
is it a MUST ? or i can save as other filename??
You can use another name, but if you do then you'll need to put this into the HEAD of all your HTML files:
Code:
<link rel="shortcut icon" href="url-of-icon">
You are in Soviet Russia. It is dark. Grue is likely to be eaten by YOU!
     
Senior User
Join Date: Apr 2001
Location: Palo Alto, CA
Status: Offline
Reply With Quote
Feb 5, 2004, 10:43 PM
 
Note that apache has to be set up to serve the ico's... not all are by default.

why the annoying lowercase uppercase topic?
     
Forum Regular
Join Date: Jun 2003
Location: Earth
Status: Offline
Reply With Quote
Feb 5, 2004, 11:22 PM
 
lowercase and uppercase... annoying? I find it attractive..

Well, i tried 1000 times but just couldn't work well... and yes, i think i'm using apache kind of server... do you know how to do the settings??

plzzz


17" widescreen LCD, 1GHz PowerPC G4,
1GB DDR266 SDRAM, 80GB Ultra ATA HD,
NVIDIA GeForce4 MX, 64MB DDR video memory
     
Occasionally Useful
Join Date: Jun 2001
Location: Liverpool, UK
Status: Offline
Reply With Quote
Feb 6, 2004, 06:28 AM
 
Originally posted by hunkhuang:
lowercase and uppercase... annoying? I find it attractive..
yes, annoying.
"Have sharp knives. Be creative. Cook to music" ~ maxelson
     
Grizzled Veteran
Join Date: Jun 2001
Location: Melbourne, Australia
Status: Offline
Reply With Quote
Feb 6, 2004, 06:40 AM
 
Originally posted by hunkhuang:
lowercase and uppercase... annoying? I find it attractive..
one word for ya - bauhaus
Computer thez nohhh...
     
Occasionally Useful
Join Date: Jun 2001
Location: Liverpool, UK
Status: Offline
Reply With Quote
Feb 6, 2004, 09:26 AM
 
word
"Have sharp knives. Be creative. Cook to music" ~ maxelson
     
Senior User
Join Date: Apr 2001
Location: Palo Alto, CA
Status: Offline
Reply With Quote
Feb 6, 2004, 09:57 AM
 
yes, i think i'm using apache kind of server... do you know how to do the settings??

You have to put a line in your apache configuration file, httpd.conf, so it feeds .ico files with the right MIME type...

AddType image/x-icon .ico
     
Forum Regular
Join Date: Jun 2003
Location: Earth
Status: Offline
Reply With Quote
Feb 7, 2004, 08:52 AM
 
Sorry but i'm stupid.

Can you please more detail on this?? I totally don't understand it..



17" widescreen LCD, 1GHz PowerPC G4,
1GB DDR266 SDRAM, 80GB Ultra ATA HD,
NVIDIA GeForce4 MX, 64MB DDR video memory
     
Senior User
Join Date: Apr 2001
Location: Palo Alto, CA
Status: Offline
Reply With Quote
Feb 7, 2004, 02:18 PM
 
On your webserver there is a text file titled "httpd.conf" - this is the configuration file for apache.

You have to edit it with a text editor. Just open it and where you see a bunch of lines that start "AddType"... insert the line for the .ico

"AddType image/x-icon .ico"

If you are using a remote webserver, just copy the file to your system, make a backup, edit it and put it back.


If your server is OS X this file is an invisible file located at:

yourharddrive/private/etc/httpd/httpd.conf

To edit it you must first make invisible files visible (use Tinkertool).

And you must have admin privs.

You can use most textediors to edit. BBEdit, Texedit, Textedit...

I recommend making a copy of it first as a backup.
(Last edited by barbarian; Feb 7, 2004 at 10:00 PM. )
     
Registered User
Join Date: Jul 2003
Location: San Jose
Status: Offline
Reply With Quote
Feb 8, 2004, 12:28 AM
 
i've had a little bit to drink tonight, but let's see if i get this right. if you're running apache on osx, you don't need tinkertool to edit. open up 'terminal' and type "sudo pico /etc/httpd/httpd.conf". enter your admin password to access the file, then scroll towards the end of the file and you should see a list of "addtype" statements. add the new statement anywhere in this list and you should be good to go.

resave the file with the same name and restart apache. BOOM, icons in the nav bar.
     
   
Thread Tools
Forum Links
Forum Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Top
Privacy Policy
All times are GMT -5. The time now is 12:56 PM.
All contents of these forums © 1995-2011 MacNN. All rights reserved.
Branding + Design: www.gesamtbild.com
vBulletin v.3.8.7 © 2000-2011, Jelsoft Enterprises Ltd., Content Relevant URLs by vBSEO 3.3.2