Fontawesome Webflow May 2026

<i class="fa-solid fa-arrow-right hover-slide"></i> Then in Webflow Designer → :

.hover-slide transition: transform 0.2s ease;

$('.accordion-trigger').click(function() $(this).find('.accordion-icon').toggleClass('fa-chevron-up'); ); <i class="fa-solid fa-circle-notch fa-spin fa-2x"></i> Classes: fa-spin = continuous rotation, fa-pulse = stepped rotation. Sizing & Styling Tricks | Need | Webflow Approach | |------|------------------| | Larger icon | Add class fa-2x , fa-3x up to fa-10x | | Fixed width | fa-fw | | Rotate 90° | fa-rotate-90 | | Flip horizontally | fa-flip-horizontal | | Custom color | Set color in Webflow style panel | | Custom size | font-size: 24px (overrides FA sizing) | Troubleshooting (Common Webflow Issues) ❌ Icon shows as a square/rectangle → Missing font-family or wrong CDN. Check console for 404 errors. fontawesome webflow

a:hover .hover-slide transform: translateX(5px);

.icon-list li:before font-family: "Font Awesome 6 Free"; content: "\f00c"; margin-right: 10px; color: #10b981; a:hover

Add to a Div Block that toggles content:

<i class="fa-solid fa-camera"></i> Add a Text Block → Type a space → In the Selector field , add: a:hover .hover-slide transform: translateX(5px)

→ Missing <i> tag or incorrect class prefix ( fas vs fa-solid for v6).