Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to use a single image as both a regular favicon and iPhone/iPad friendly favicon.

Is this possible? Would an iPad-friendly 72x72 PNG scale if linked to as a regular browser favicon? Or do I have to use a separate 16x16 or 32x32 image?

Much obliged for any help.

share|improve this question

5 Answers

I am not sure if/how browsers scale large icons, but The W3C suggests the following1:

The format for the image you have chosen must be 16x16 pixels or 32x32 pixels, using either 8-bit or 24-bit colors. The format of the image must be one of PNG (a W3C standard), GIF, or ICO.


1 w3c.org: How to Add a Favicon to your Site (Draft in development).

share|improve this answer

I have recently read a good tutorial about this, you can find it here:

http://www.onextrapixel.com/2010/10/06/pixel-art-create-a-better-favicon-for-your-website/

they also show a way to create a multi-resolution favicon which whould do your case.

share|improve this answer

You can have multiple sizes of icons in the same file. I routinely create favicons (.ico file) that are 48, 32, and 16 pixels. You can add in any size image you want. The question is, will the iPhone use an ico file?

ico also supports transparency, but I'm not sure if it's an alpha channel like PNG; probably more like GIF where it's on or it's off.

share|improve this answer
I believe XP and up support a PNG-like (PNG itself?) format for RGBA images. egressive.com/tutorial/… shows how you can use the GIMP to include such images in an .ico file. – SamB Feb 17 '11 at 17:24

You will need separate files for each resolution I am afraid. There is a really good article on campaign monitor describing how they created and implemented their icons for each iOS device too:

http://www.campaignmonitor.com/blog/post/3234/designing-campaign-monitor-ios-icons/

share|improve this answer
you can have multiple sizes of icons in the same file. – Brad Oct 25 '10 at 13:15
Thanks very much, that's an excellent article. Still a bit of a mystery what Apple devices would do with ico files that have multiple sized images in them. – Alex G Oct 25 '10 at 13:28

According to the Wikipedia Article on Favicon, Internet Explorer supports only the ICO format for favicons.

I would stick with two different icons.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.