Can't download Font Awesome 4.7 anymore? - font-awesome

The link seem to be broken:
https://fontawesome.com/v4.7.0/assets/font-awesome-4.7.0.zip
Any alternative link?
Thx

You can find it on GitHub :
https://github.com/FortAwesome/Font-Awesome/releases/tag/v4.7.0
I download it successfully but I didn't try it, I think it will work

The link you posted is working. maybe you hit it during an outage. But both your direct link or from the download button on the screen here work.

FontAwesome creators are going to upgrade from v5 to v6 so the v4 may be completely dropped soon.
You can still preview and search icons or download FontAwesome v4.7 icons on Github.

Related

Twitter Bootstrap favicon.ico

I am working on a site using the one of the twitter bootstrap templates and my JavaScript console is complaining that it is missing:
favicon.ico
ie-emulation-modes-warning.js
I downloaded all of the Bootstrap files from the Bootstrap website. What are these files and do I need them?
If so, where can I get them?
Edit: Thanks guys! Looked into Favicons and didn't realize that is what they are! So simple! lol
By default, browsers look for favicons in your site's root directory. You can use favicon generators online, which (by standard) create 16x16 pixel png-like objects that are used as your site's icon on a browser tab, etc. Just make one of those and drop it in your root directory.
If that doesn't work, you may want to use your inspector (assuming you're using chrome), right click > inspect element > console (or network), and look there to see where your template is looking for the favicon. Just drop the generated .ico file in that folder.
For the JS file, you may be able to find it online, download it, use the inspector again, and drop it wherever your browser is looking for it. This is good for performance—missing files slow roundtrip requests down.
It's something browsers look for by default. Nothing to do with Bootstrap
http://en.wikipedia.org/wiki/Favicon

Favicon Not Showing Up?

Any idea why this isn't working?
<link rel="icon" type="image/png" href="Favicon.png"/>
It's just not showing up. I used the exact same setup on a local practice website, and it worked fine (it was using the same picture as well). Are you supposed to just put the picture onto your website server and reference it like I did? Or is there something I don't know about?
Also, how exactly do you get a favicon to show up on IE? Yes, I've researched this, and all the methods I've found just don't work...
You can just put the icon [favicon.ico] in the root directory of your website. That's what I did.
Oh yeah, to answer the question, it could be because it is a png ;)
There is a PNG to ICO file converter online, so that's what I used to get around the IE issue. www.convertico.com
*If you test this locally, it might not show up. My local pages don't show a favicon.
Yes, you should upload the file to your web server. The reason why this works locally for you is because it is in the same file as your html document. There are two things you do to get your favicon working:
Upload the file to the same folder as in your html document. If you have a web host, such as altervista.org, you could upload your favicon to the website.
Upload your favicon to an image uploading website. You could use google drive for all it's worth, anything website that can publicly display your photos is fine. If you upload this to a server, you can find the link to your image and reference that favicon in your link tag.
Hopefully this helps!
I faced to the same problem.After checking my whole code for hours , finally I figured out the problem.I used base tag , it caused the favicon icon to do not be displayed.When I removed , the problem was solved.So, I recommend you to remove base tag if you have used in your website.
I hope it could help!

HTML5 download links not working

I've made a snazzy first website, but I can't get the download links to work without manually opening them in a new tab on my browser. I've tried using different browsers, setting target="_blank" and fiddling with the download property in the <a> tag, to no avail. What on earth is happening?
Here's my website.
I discovered that my twitter bootstrap css files were outdated. After an update, links worked again!

facebook php SDK on chrome

I use the PHP SDK for creating a facebook app. It works fine on all the browsers, but not on Chrome.
I tested the adding of :
header('P3P: CP="CAO PSA OUR"');
at the begining of the facebook.php file, but in vain.
I know this topic has been covered in some posts on SO, but my problem seems different : on chrome when I load the facebook app I have a grey page with this icon
Is the problem related with https things ? With cookie things ?
More than that, when I use the JS sdk the same issue occurs.
Thank you for any help.

Jquery Mobile links stopped working for pages

I have a jquery mobile site in developement at http://www.ab-mobile-apps.com/app/fcs/index.html
The issuse is that the links from the main menu recently stopped working. The browser recognizes them but upon a click of the link nothing happens exept for the service link. I am using JQMobileRC 1.1 as I have with other sites with out any issues.
If anyone has any input It would be appreciated. Thank you.
You could be running into this issue. If so, you need to back up to version 1.0.1 or move forward to the latest bleeding edge.
I ran into the same issue (at the time of this reply, latest jqm version is 1.4.2) and this solved it for me so far :
1) links pointing to a different page within you domain / app : data-ajax="false"
...
2) links pointing to a different domain : rel="external"
...