Home > Back-end >  My favicon image is SVG but it looks small
My favicon image is SVG but it looks small

Time:07-13

As I said in the description, the picture is very small, I want it to completely cover it.

<link rel="icon" href="favicon.svg" type="image/svg xml" sizes="128px"/>

Here's how it looks on mobile.

Thank you!

CodePudding user response:

Convert favicon image to .ico, you can do it with an online tool like this

Also, have a look at this article

CodePudding user response:

You have to specify sizes in the manifest.

For an example: https://css-tricks.com/svg-favicons-and-all-the-fun-things-we-can-do-with-them/

Or you have to se it in the correct supported formats: 16x16 32x32 and so on...

sizes="96x96"
  • Related