top of page

Font Awesome Icons




In this post, I guide you through customising your Knack application links with icons using Font Awesome. Learn how to replace standard text in edit, details, and delete links with visually appealing icons, align them correctly, and use Windows emojis for quick options. I also demonstrate how to integrate Font Awesome's extensive library by adding a simple JavaScript snippet for even more choices. Enhance your user interface and give your buttons a professional touch!


Sign up to Knack for Free - Affiliate Link


Add to JavaScript

 /* Font Awesome Library */ 
  const link = document.createElement('link');
  link.rel = 'stylesheet';
  link.href = 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css'; // Updated to a newer version
  document.head.appendChild(link);

Font Awesome


12 views0 comments

Recent Posts

See All

Comentarios

Obtuvo 0 de 5 estrellas.
Aún no hay calificaciones

Agrega una calificación
  • Black LinkedIn Icon
  • Black Twitter Icon
  • Youtube

©2022 CH Project Support Limited

bottom of page