I purchased Font Awesome 5 since the included icons did not include most of what I needed. I followed their instructions for installing via the SVG Framework method:
- Grab the base Font Awesome loader at /js/fontawesome.js.
- Grab one or more of the styles (ex: /js/packs/solid.js) in the /js/packs directory.
- Place these files in your project static files.
- Include them in the of your document.
- Reference Font Awesome icons (using the inventory for easy copying/pasting) in the of your document.
Step 4 is where, I am stuck. I tried adding:
`
to the content JS pullout for the page I am working on and then
<body>
<i class="fa fa-user"></i>
</body>
to a content box and text box.
I have tried without the â<scriptâŚâ and just put âdefer src="/js/packs/solid.js"â in the content js section
and omitted the body tags as well. Nothing gets the icons to show.
Is this the incorrect way to insert in the the of my document thatâs referred to in step 4? should this be added to something like _header.php ? If so, whatâs the proper format?