Deleted

Permalink
Deleted

 
liquidfuse replied on at Permalink Reply
Deleted
kchilds replied on at Permalink Reply
kchilds
how did you get it to work? Where do you put the code?
liquidfuse replied on at Permalink Reply
Put this code right before the </html> in all of your pages that you want the Favicon to show up on.

<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>

Then simply upload your 16x16 favicon.ico file to the c5 root directory.

(example:http://www.YOURDOMAIN.com/c5) or whatever your sub directory is called. If you have c5 installed athttp://www.YOURDOMAIN.com, then just upload the favicon.ico file to that folder instead. Hope this helps.
Tony replied on at Permalink Reply
Tony
btw, if you're having trouble trying to make it work with Internet Explorer, then good luck. Support for the favicon is really intermittent in IE, and I think you have to actually add the site to your favorites before it'll show up.
andrew replied on at Permalink Reply
andrew
To anyone reading this...5.2 has favicon support listed as a feature...but unfortunately what's out there is essentially broken. We should have a fix in the next version. So if you're trying to use that version and things aren't working...that's why - you're not crazy ;-)
ninja replied on at Permalink Reply
ninja
Just put the favicon in your web root directory, then put the following code in your theme's default.php file (between the head tags).

<link rel="icon" href="<?= DIR_REL ?>/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="<?= DIR_REL ?>/favicon.ico" type="image/x-icon" />