.woff
or .woff2
format to Webflow.font-feature-settings
) via Page Settings or Embeds to enable features like 'liga'
, 'salt'
, or 'ss01'
, and add special glyphs manually using character tools.To use ligatures and extra characters (glyphs or stylistic alternates) from a font in Webflow, you need to understand both font settings in Webflow and how to input special characters manually.
.otf
or .woff2
)..woff
or .woff2
format, as these preserve OpenType features Webflow can use.Webflow does not allow you to toggle OpenType features like ligatures or stylistic sets directly in the Designer, but you can use custom CSS in the Page Settings > Custom Code section or via an Embed element.
To enable ligatures:
style="font-feature-settings: 'liga' 1;"
To enable stylistic alternates (if supported by the font):
font-feature-settings: 'salt' 1;
or 'ss01' 1;
(for Stylistic Set 1), depending on the feature.You can apply these to specific classes like:
.custom-class { font-feature-settings: 'liga' 1, 'ss01' 1, 'salt' 1;}
Place this in:
<style>
tag.<style>
block.To enter glyphs or special alternates:
Control + Command + Space
and search for characters.ALT + 0131
).Or:
Important:
To use ligatures and extra characters in Webflow, make sure your font supports them, upload the correct format, insert special glyphs via character tools, and use custom CSS to activate OpenType features like 'liga'
, 'salt'
or 'ss01'
. Webflow’s interface doesn’t offer toggles for these features directly, so manual character input and CSS are the workaround.