Reputation: 51
Agency free theme in Bootstrap comes a long with GitHub favicon, I cannot track where the GitHub favicon comes from and that's why I can't change it. It didn't override the starting favicon when I added my custom favicon between <head></head>
tags.
Upvotes: 1
Views: 24546
Reputation: 3
For example, remove parts of code for your project.
<link rel="icon" type="image/png" sizes="48x48" href="/img/image.png">
Upvotes: 1
Reputation: 274
You can use this way. and go to W3School
<link rel='icon' href='favicon.ico' type='image/x-icon' sizes="16x16" />
Upvotes: 5
Reputation: 10675
Probably it is a cache problem... try to force the favicon refresh using the link tag and a querystring on your filename.
<link rel="icon" href="http://www.yoursite.com/favicon.ico" />
You can also try reloading with no cache (ctrl + f5) or restarting the browser
Upvotes: 1