Icons
How to use Icons
You can use icons from the Font Awesome (Free) Icon Pack - https://fontawesome.com/search?ic=free&o=r
<i class="fa-solid fa-name"> </i>
- Copy and paste the code above into the "Source" code section from the CK5 Rich Text Editor with Source
- Replace fa-name with the name of your icon (Example: fa-user) the name of each icon can found on the Font Awesome Icon Pack
Change size of Icon
You can easily change the size of your icon with these CSS classes from Font Awesome
- Select from these size classes "2xs, xs, sm, lg, xl, 2xl"
- Additional you can use css style to make them any size
<i class="fa-solid fa-user fa-2xl"> </i>
Change color of Icon
To change the color of your icon, you just need to add a style color class to your icon and select the color
<i class="fa-solid fa-user fa-2xl" style="color:#003DA5;"> </i>