Good afternoon everyone. I'm doing HTML layout tests. I entered IE to see how it was and noticed that the <link rel="shortcut icon" href="img/body/icon-amova.png"/>
code was not working in IE 10.
I researched articles:
And I changed my code to
<link rel="icon" href="img/body/icon-amova.ico" type="image/x-icon"/>
Please note that I have changed the file extension and it works fine in other browsers, but even so, it does not work in IE 10.
Then I found an answer here in SO
And I changed my code to:
<link rel="icon" href="http://localhost/amova/img/body/icon-amova.ico" type="image/x-icon" sizes="32x32"/>
Notice that I used the full path, put the tag sizes
, cleared cache information. But nothing has changed.
Any other suggestions?