I believe I have the answer. Using information found in the following thread http://www.zen-cart.com/forum/showth...nimate+favicon I was able to animate my favicon.
First, go to includes/languages/english/MY_TEMPLATE/mets_tags.php at about line 63 you will see the following:
Original code:
PHP Code:
// favicon setting
// There is usually NO need to enable this unless you need to specify a path and/or a different filename
define('FAVICON','favicon.ico');
replace/add code:
PHP Code:
// favicon setting
// There is usually NO need to enable this unless you need to specify a path and/or a different filename
define('FAVICON','favicon.ico');
define('FAVICON2','animated_favicon.gif');
Now go to includes/templates/MY TEMPLATE/common/html_header.php
Location of code addition: - about Line 34
Original code
PHP Code:
<?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 ?>
replace/add code:
PHP Code:
<?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="<?php echo FAVICON2; ?>" type="image/gif" />
<link rel="shortcut icon" href="<?php echo FAVICON2; ?>" type="image/gif" />
<?php } //endif FAVICON ?>
It work!!
Sawhorse