Reputation: 179
I'm using:
<link rel="shortcut icon" href="../Images/favicon.ico" />
to add a small icon to the browser tab, but now I cannot remove it from the browser. I removed it from the head
section but it's not working. I also cleared the cache, cookies and sessions but still the same. The .ico
icon is still in the browser tab.
Upvotes: 2
Views: 31874
Reputation: 3795
This is common problem and we need follow 3 steps to remove .ico
from browser tab.
Remove reference from head
tag where added the icon.
Delete or move somewhere else from current folder from where was added.
Clear the browser cache, cookie etc.
Open the same link in new tab or new browser's
Upvotes: 1
Reputation: 932
By default, your browser will use the favicon in the same folder with your html file, so removing your link tag will do nothing. You need to move the favicon elsewhere or delete it. Then, if it stills shows up, clear your cache and go to the icon to see the new one.
Upvotes: 2