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
Comentarios