How to solve the “apple-touch-icon-precomosed” W3C Validation Error [SOLVED]
How to solve the “apple-touch-icon-precomosed” W3c Validation Error message.
If your code reads like the following then it will need to be changed to the code further below.
<link rel=”apple-touch-icon-precomosed” sizes=”57×57″ href=”http://www.website.com/favicons/apple-touch-icon-57×57.png” />
Change the above code to the following (Removing “-precomosed”:
<link rel=”apple-touch-icon” sizes=”57×57″ href=”http://www.website.com/favicons/apple-touch-icon-57×57.png” />
Now this error message will have been resolved and repeat this change for any other occurences in your code.