Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS web app icon without glare

I used this line of code in my web app to add icon:

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

but iOS added glare (glass) on icon automatically, and I don't want this.

I know that I can say to iOS for my native app that I don't want glass, but I dont figure out how to do that for web app.

like image 689
dormitkon Avatar asked Apr 19 '11 16:04

dormitkon


1 Answers

Change the rel to say apple-touch-icon-precomposed:

<link rel="apple-touch-icon-precomposed" href="images/ipadicon.png" />
like image 99
BoltClock Avatar answered Sep 30 '22 14:09

BoltClock