I am unable to animate my favicon.
It is my understanding that in Firefox you can have an animated gif favicon. I also understand that in IE this animation is not yet possible.
First, I placed a new file called animated_favicon.gif in my root where my favicon.ico is also located.
Next, I thought that I could simply add an additional line in my html_header.php and the animated gif would show in FF. However, this was not the case.
Below are the particulars:
File location: Includes/templates/MY TEMPLATE/common/html_header.php
Location of attempted code addition: - about Line 34
Original code```php
<?php if (defined('FAVICON')) { ?>
<link rel="icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />
<link rel="shortcut icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />
<?php } //endif FAVICON ?>
**Added code **```php
<?php if (defined('FAVICON')) { ?>
<link rel="icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />
<link rel="shortcut icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />
<!-- added animated favicon gif -->
<link rel="icon" href="animated_favicon.gif" type="image/gif" >
<?php } //endif FAVICON ?>
```
Has anyone had any luck with making their favicon animate?
Thanks
Sawhorse