I’m working on matching a text design from Figma in my Webflow project but running into rendering issues. The typography and outline effects look perfect in my design file but appear totally different when I build it in Webflow.
What’s happening:
- Figma shows clean white outline around text with purple drop shadow
- Webflow version looks wrong even with identical CSS properties
- Font appears different despite using same typeface
Here’s the CSS I copied from Figma:
color: #9B59B6;
text-align: center;
font-feature-settings: 'ss02' on, 'liga' off;
text-shadow: 0px 2px 0px #9B59B6;
-webkit-text-stroke-width: 3px;
-webkit-text-stroke-color: #FFFFFF;
font-family: Montserrat;
font-size: 36px;
font-style: normal;
font-weight: 800;
line-height: 44px;
Things I already tried:
- Uploaded custom font files to Webflow
- Double checked no other CSS is overriding my styles
- Added webkit stroke properties through custom code panel
- Tweaked shadow values thinking they might conflict with outline
Questions I have:
- Why do text outlines render so differently between these platforms?
- What’s the best approach for webkit text stroke in Webflow?
- Could Webflow be handling my custom font or OpenType features incorrectly?
Any help would be awesome!