stable version

Common Issue

Icons are not loaded properly

Icons are displayed using the Font Awesome library, which in our script is loaded from external server.

When testing the Demo without internet access, icons won’t load because there is no connection to the server of this library.

To avoid problems for local testing, you can add the CDN script to your local directory. To do that:

  • First, remove the array item in the init.js for the fontawesome cdn.

    ../_images/issue.png
  • Go to fontawesome.com then download the free package for fontawesome.

  • Extract the file, then go into web-fonts-with-css folder. Copy the content and folder of this folder and paste into the asset path:

    ../_images/issue1.png
    1. Paste the content in assets > css

      ../_images/issue2.png
    2. Paste folder in assets folder

      ../_images/issue3.png
  • Attach css file in the html file with the proper path.

    ../_images/issue4.png
  • Save the changes.