Hi,
I m developing a website using wordpress in Google App Engine
I used favicon. Favicon displayed in Chrome Browser. But not display in FireFox (FF) ver 42.0.
My site URL :https://probable-skill-114906.appspot.com/
I did as per the below link
http://codex.wordpress.org/Creating_a_Favicon
I tried below methods:
METHOD 1:
1.Generated favicon and place images under theme directory.
2.Added the code in header.php file:under<head> section
<link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/images/favicon.ico" type="image/x-icon">
3.Added code In App.yml file:
- url: /favicon.ico
static_files: images/favicon.ico
upload: images/favicon.ico
O/P - NOT DISPLAYING IN FF
METHOD 2:
1.Generated favicon and placed in root directory.
2.Added the code in header.php file under<head> section
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
3.Added the code In App.yml file:
url: /favicon.ico
static_files: favicon.ico
upload: favicon.ico
O/P - NOT DISPLAYING IN FF
In method 2 i tried the below also.
under<head> section
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon?">
<link rel="icon" href="/favicon.ico" type="image/x-icon?">
O/P - NOT DISPLAYING IN FF
Plz help thanks in advance!