
Originally Posted by
purplediane
I un-commented the line to define FAVICON. It makes no difference to Firefox. If it wants a complete path, I'm not sure what to make it:
either
I have been doing a hard refresh and/or closing the browser, deleting private data, etc.
Any more suggestions?
Diane
Some browsers don't like to pick up want you don't want.
Theirs more here then I can remember right now.... been a long day. To fix it, you can do a gif icon as will as the ico. this seams to let FF pick up the icon even if not bookmarked.
By default, browsers look for FAVICON in the root folder unless you tell them elsewhere.
So... in 'includes/languages/english/YOUR_TEMPLATE/meta_tags.php'
Code:
define('FAVICON2','includes/templates/YOUR_TEMPLATE/images/icons/icon.gif');
define('FAVICON', 'includes/templates/YOUR_TEMPLATE/images/icons/icon.ico');
In 'includes/templates/YOUR_TEMPLATE/common/html_header.php
Code:
<link rel="icon" href="<?php echo FAVICON2; ?>" type="image/gif" />
<link rel="shortcut icon" href="<?php echo FAVICON2; ?>" type="image/gif" />
<link rel="shortcut icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />
That fixed it for me, should work. Also, you can make the gif animate like the DHL icon....