Question

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,

No correct solution

OTHER TIPS

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top