0

I am trying to add an apple-touch-icon to my SharePoint 2010 site. So far I had no luck with SharePoint sites. I added the following code to mater page file. But The same links works on regular web application sites. I am very new to SharePoint. Is there anybody who has had success with it? If so, could you please help me?

Thanks in advance,

1 Answers1

0

Add this code in your masterpage :

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

If you don't want the default glass effect add this one :

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

This is for the new generation with high resolution:

<link rel="apple-touch-icon" sizes="72x72" href="touch-icon-ipad.png" />
<link rel="apple-touch-icon" sizes="114x114" href="touch-icon-iphone4.png" />

Apple's source here

Cana
  • 2,204
  • 1
  • 13
  • 12
  • And if you need the image to be sourced from the Style Library, using syntax along these lines: ` ` – Matty J Oct 27 '16 at 01:47