Reputation: 37
I have added a favicon.ico file in my root directory and have also added the image as site identity. Favicon is getting displayed in my admin pages but not on any browser. Here is the link for the website "www.acrosszero.org"
Upvotes: 0
Views: 3916
Reputation: 538
This occurs sometimes when the favicon is too large.
To create a favicon that fits use the following dimensions:
Upvotes: 0
Reputation: 3149
Add an .ico image file (16x16 or 32x32 pixels) to the folder where is the page you want to display it. Then, in that page, edit the source code: inside the <head>
tag (if it doesn't exist, you create), wich is inside the <body>
tag, add:
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon'/ >
Then close the tag this way:
</head>
Save the page and reload.
Upvotes: 1