How to upgrade Font Awesome to version 4.7 in Bootstrap Studio?

When the devs do an update

Thank you! That would be great! It is very bad to develop with outdated product.

In the meantime, you can:

  • Go under “Settings” in the top app menu
  • Under the “Export” tab click “Use a CDN….”
  • Then once exported open the HTML in an editor and change the CDN referenced link to the version you want.

See here: https://cdnjs.com/libraries/font-awesome

Change this:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">

To this:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

In your HTML source. Or download it and reference it however you desire on your server.

Thank you! I think the platform should follow the updates of the icons to see the correct project when developing and not when exporting.