Our template includes prebuilt SVG icons in three sizes: Regular, M, and L. If you want to adjust their size, follow these steps:
💡 Keep in mind: Any changes you make will be applied globally to all icons using the same class (i.e., the "Icon" class)
If you want to change the icon color, head to the Typography section in the Style panel and adjust the font color.
💡 Keep in mind: Any changes you make will be applied globally to all icons using the same class (i.e., the "Icon" class)
If you want to add new SVG icons that can be styled directly within Webflow, you can use Phosphor Icons, a flexible and customizable icon library.
Now, you can easily adjust the color and size of the icon directly within Webflow.
💡 Pro Tip: Our templates come with a predefined “Icon” class, so you can simply apply this class to your new icon to maintain a consistent style across your site.
clamp()
clamp(min, val, max)
FunctionIn this template, the font size for dynamic text is controlled by the clamp()
function:
clamp(min, val, max)
‍
This function allows the text to scale fluidly while staying within defined limits:
min
– The smallest font size allowed.val
– The preferred value, which adjusts dynamically as long as it stays within the min and max range.max
– The largest font size allowed.‍
In our template, val
is set using the vw (viewport width) unit. Since 100vw
equals 100% of the viewport width, using vw
for font size means that the text will resize dynamically as the window size changes.
‍
To enter your own preferred content and ensure it fits well within the design, follow these steps:
clamp(min, val, max)
values to make sure the text adapts properly within the outer frame.đź’ˇ Pro Tip: Keep vw
as the font size unit to ensure the text resizes fluidly across different screen sizes.