I have a favicon that I would like to display on the IE tab when on my site.
This works fine in Chrome, Firefox, and IE10 and above but not for IE9 and below.
Currently I am using the following in the <head>
tag:
<!--[if IE]>
<link rel="stylesheet" href="#$.siteConfig('themeAssetPath')#/css/ie/ie.min.css">
<link rel="stylesheet" href="#$.siteConfig('themeAssetPath')#/css/ie/ie_overrides.css">
<link rel="icon" type="image/png" href="#$.siteConfig('assetPath')#/images/favicon.png">
<![endif]-->
Hoping it will target all IE but it isn't working.
Is their another approach so the Favicon appears on the IE9 and below tabs?
Thank You
UPDATE
As you can see below, I have converted the favicon. However, it still does not display the logo.
I have tried the following way to see if the icon will appear:
<!--[if LTE IE10]>
<link rel="icon" href="#$.siteConfig('assetPath')#/images/favicon1.ico" type="image/x-icon" />
<![endif]-->
And this approach:
<link rel="shortcut icon" href="/favicon.ico" >
<link rel="icon" type="/image/ico" href="/favicon.ico" >
Yet neither show the results I am looking for