Question:
So I am making a website and I am trying to get a favicon on it, but no matter what I do it never works and I can’t see the favicon.
Repl link:
https://replit.com/@SalladShooter/AreaKnowledge
https://areaknowledge.salladshooter.repl.co/
HTML:
<link rel="icon" href="https://replit.com/@SalladShooter/AreaKnowledge#favicon.ico" type = "image/x-icon"> <link rel="icon" href="favicon.ico" type="image/x-icon">
IMAGE:
1 Like
This won’t work, as that just leads to a webpage
Either way, it’s working just fine for me.
I think there’s always been some issues with favicons. Usually if you just name it favicon.ico and put it in the root directory then some browsers will auto-detect it and put it on there. Others require a different declaration than
I think that one works for Microsoft Edge, but my guess is that you’re using Google Chrome so it doesn’t work. I believe the other code you need to put is this:
<link rel="shortcut icon" href="http://www.urloftheimage.com/image.png" type="image/x-icon">
And remember to do away with your first one.
1 Like
I am using Safari, also would a PNG work instead of using a .ico
I have it as this know for my code:
<link rel="shortcut icon" href="https://replit.com/@SalladShooter/AreaKnowledge#images/AKLogo.png" type = "image/x-icon"> <link rel="icon" href="images/AKLogo.png" type="image/x-icon">
Or should it be like this:
<link rel="shortcut icon" href="images/AKLogo.png" type="image/x-icon">
You shouldn’t be using a PNG. It should be an ICO file.
Use both
<link rel="icon" href="favicon.ico" type="image/x-icon">
And
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
That’s what I’d try. And then make sure to keep favicon.ico in your root directory at all times
Though I don’t have links off the top of my head, I know for a fact that some sites use a PNG as their favicon.
1 Like
@boston2029 It still isn’t working. Is it because I use Safari?
I often use png instead of ico because too lazy
Probably, Safari have some badblood with .ico files.
You can try explict path like:
<link rel="icon" href="https://areaknowledge.salladshooter.repl.co/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="https://areaknowledge.salladshooter.repl.co/favicon.ico" type="image/x-icon">
1 Like
@WindLother that doesn’t seem to work either.
pman10
October 10, 2023, 11:06am
11
SalladShooter On my iPad, I can see your favicon.
@pman10 Im on an iPad and cant seem to see it. It shows this
pman10
October 10, 2023, 11:12am
13
It may be displayed by deleting the cache in iPad.
system
Closed
October 17, 2023, 11:12am
14
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.