You are not logged in.
Pages: 1
I have been trying to get one of my sites to use a favicon, but don't seem to be able to get it to work correctly. Any sugestion would be greatly appreciated.
Here is what I have done so far.
Made the the favicon 16X16
Named the file favicon.ico
Put this in the
head>
( <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> )
head/>
Bob
Offline
No linking to it is required.
Simply upload it to the root directory and Pluck automatically does it for you ![]()
Offline
Still doesn't seem to work.
Bob
No linking to it is required.
Simply upload it to the root directory and Pluck automatically does it for you
Offline
open / edit: data/themes/your-theme/theme.php
and place this:
<link rel="shortcut icon" href="data/themes/<?php echo $site_theme; ?>/images/favicon.ico" type="image/x-icon" />before the closing tag </head>
in this case you have to place favicon.ico in the folder images
"data/themes/your-theme/images"
Last edited by mecano (10-03-2010 16:29:26)
Offline
mecano
Thanks it works !!!
I have been looking all over the net and not one article mention to put the favicon in the images folder. All the articles said to put the favicon in the root directory.
Thanks so much.
Bob
Last edited by rfuller (13-03-2010 15:31:15)
Offline
mecano
I have been looking all over the net and not one article mention to put the favicon in the images folder. All the articles said to put the favicon in the root directory.
This got more to do with path and theme
example
<link rel="shortcut icon" href="data/themes/<?php echo $site_theme; ?>/favicon.ico" type="image/x-icon" />in this case you have to place the favicon.ico in your theme folder
dynamic href
data/themes/<?php echo $site_theme; ?>/favicon.ico
or fixed href
data/themes/your_theme/favicon.ico
Offline
Pages: 1