Ideal size for .ico

Short answer: 16 x 16 pixels. Long answer: .ico files can actually contain multiple images, at multiple colour depths – you can provide 16×16, 32×32, 48×48 and 64×64 in a single file and the OS will pick the best one to show. Of course to keep the file size low you don’t want to put … Read more

Set favicon in django admin

To avoid duplicating anything of the original file, you can actually override the template while extending it (docs). So create your own template/admin/base_site.html: {% extends “admin/base_site.html” %} {% load static %} {% block extrahead %} <link rel=”shortcut icon” href=”{% static ‘yourapp/img/favicon.ico’ %}” /> {% endblock %}

Favicon: .ico or .png / correct tags? [duplicate]

For compatibility with all browsers stick with .ico. .png is getting more and more support though as it is easier to create using multiple programs. for .ico <link rel=”shortcut icon” href=”http://example.com/myicon.ico” /> for .png, you need to specify the type <link rel=”icon” type=”image/png” href=”http://example.com/image.png” />