Forums

Adding a Favicon

I'm brand new to this site, and only started a few days ago and I have question. I have a favicon.ico file that I want to upload, but I'm not sure where to upload it and how I should link to it. I'm using python Flask if that helps.

Hello heliotrope, It is possible to add favicon. I don't know about flask but in Django we just have to upload the file in the static folder and give appt link to it.

There is a files tab on top of dashboard which will show all your files. There is also a upload botton in files tab. For a large number of files use git clone command in console (bash).

Hope that's helpful.

The favicon needs to be available as a static file in the root of your web apps URLs. There is an "Upload" option on every directory in the Files tab. You might also find some helpful stuff here.

Ok I added did what you said (added it in static and linked it) and it now works. Thanks!

<link rel="shortcut icon" href="{{ url_for('static', filename='images/favicon.ico') }}">

This worked form me on Flask, according to this page

:-)

thanks fabioquintilii! it worked!!