문제

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,

올바른 솔루션이 없습니다

다른 팁

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top