aer_0
aer_0

Reputation: 51

How can I change favicon in Bootstrap based agency theme

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

Answers (3)

For example, remove parts of code for your project.

<link rel="icon" type="image/png" sizes="48x48" href="/img/image.png">

Upvotes: 1

Ankit Jaiswal
Ankit Jaiswal

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

Javier Aviles
Javier Aviles

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

Related Questions