Hi,
I used an online Favicon generator and it allowed me to specify custom favicons for different operating systems and sizes. The following image shows the files that it generated:
Below are the instructions and the code that it generated to input into my webpage.
Would anyone mind giving me an idiot proof guide on how to get these files to work for my forum?
I used an online Favicon generator and it allowed me to specify custom favicons for different operating systems and sizes. The following image shows the files that it generated:
Below are the instructions and the code that it generated to input into my webpage.
- Place ‘favicons’ folder in the root of your web site. If your site is http://mysite.com, you should be able to access a file named http://mysite.com/favicon.ico.
- Insert the following code in the <head> section of your HTML pages:
Code:
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
<link rel="icon" type="image/png" href="/favicon-196x196.png" sizes="196x196">
<link rel="icon" type="image/png" href="/favicon-160x160.png" sizes="160x160">
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<meta name="msapplication-TileColor" content="#9fc1bf">
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
Would anyone mind giving me an idiot proof guide on how to get these files to work for my forum?
Last edited: