Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does the apple touch icon have to be in the root folder?

Tags:

html

ios

icons

A seemingly simple question that I can't find a clear answer to.

Does the apple touch icon have to be in the root folder of my site?

<link href="http://example/apple-touch-icon.png" rel="apple-touch-icon" />

Or is it okay if I place it in another location?

<link href="http://www.yoursite.com/some/other/folder/apple-touch-icon.png" rel="apple-touch-icon" />
like image 791
MultiDev Avatar asked Jul 30 '14 16:07

MultiDev


People also ask

How do I specify apple touch icon?

You can specify what icon your app should use by including a <link rel="apple-touch-icon" href="/example. png"> tag in the <head> of your page. If your page doesn't have this link tag, iOS generates an icon by taking a screenshot of the page content.

What is Apple touch icon for?

Similar to the Favicon, the Apple touch icon or apple-touch-icon. png is a file used for a web page icon on the Apple iPhone, iPod Touch, and iPad. When someone bookmarks your web page or adds your web page to their home screen, this icon is used.

How do I add apple touch icon to Blogger?

How to set up Apple touch icon? Go to your blogger blog and go to the 'Theme' option. Now download a backup file of your theme, in case of emergency. Now, click onto the HTML editor and open your theme XML file and between <head> and </head> you have to paste the Apple touch icon meta code.


1 Answers

Not necessarily. From the Safari Web Content Guide, the Configuring Web Applications section states:

  • To specify an icon for the entire website (every page on the website), place an icon file in PNG format in the root document folder called apple-touch-icon.png
  • To specify an icon for a single webpage or replace the website icon with a webpage-specific icon, add a link element to the webpage, as in:

    • <link rel="apple-touch-icon" href="/custom_icon.png">
  • To specify multiple icons for different device resolutions—for example, support both iPhone and iPad devices—add a sizes attribute to each link element as follows:

    • <link rel="apple-touch-icon" href="touch-icon-iphone.png">

    • <link rel="apple-touch-icon" sizes="76x76" href="touch-icon-ipad.png">

    • <link rel="apple-touch-icon" sizes="120x120" href="touch-icon-iphone-retina.png">

    • <link rel="apple-touch-icon" sizes="152x152" href="touch-icon-ipad-retina.png">

The icon that is the most appropriate size for the device is used. If no sizes attribute is set, the element’s size defaults to 60 x 60.

You should be able to place it in another folder and use the link elements to refer the browser to the alternate location of the apple-touch-icon file, and have it work just fine.

like image 130
esqew Avatar answered Oct 17 '22 08:10

esqew