@16bij9Productie Yes, this is a known rendering issue in Safari — especially with italic or oblique fonts — where glyphs slightly overflow their bounding box, and Safari ends up clipping the left side of italic characters like “f”, “y”, or “T”.
1. Add Left Padding or Margin to the Text
Add a small padding-left or margin-left (around 0.2em or 2-4px) to the affected italic text element or class.
.italic-text {
padding-left: 0.2em;
}
In Webflow:
Select the text or span with the italic class
Under Spacing, add 2px–4px padding on the left
2. Use overflow: visible on the parent element
Ensure that all parent containers of the italic text have:
overflow: visible;
Check:
The direct wrapper of the text (usually a div, span, or text block)
Any column, grid, or section wrapper
In Webflow:
Go to each container element
Under Layout → Overflow, set it to visible
3. Avoid using inline italic spans if not necessary
If the italic text is applied through a span or inline element, it’s more prone to this issue.
If possible:
Use a dedicated class with font-style set to italic
Or apply font-style: italic at the block level instead of inline
Thanks for the suggestions. I’ve tried options 2 and 3, but they didn’t make a difference. Adding padding does work, but I have to set it to 15 or 20px to make sure the full letter appears inside the box.
Unfortunately, that really messes with the design. Hopefully Safari or Apple will fix this in a future update..