Reputation: 824
Is it possible to change the background of the "Add to Home Screen"? .. which is typically user initiated from an iPhone app to creates a custom bookmark on the home screen of the iPhone.
Upvotes: 0
Views: 422
Reputation: 1837
Pop this in your <head>
<rel="apple-touch-icon" href="image.png"/>
This will be the thumbnail on the I phone's home screen. The image should be square, with a size of 57x57
You can also use
<rel="apple-touch-icon-precomposed" href="image.png"/>
If you don't want iOS to add effects to your thumbnail.
Upvotes: 2