Safari Rendering only Black text

Hi @Jesse_Green, well one thing you can do right away is to use a custom css style in the head of your site or page:

<style>
.section {
  -webkit-text-fill-color: white;
}
</style>

This will set the text color to white, or you might also try “currentColor” as a value to see if that works.

Here is how to add custom code: Custom code in head and body tags | Webflow University

After adding the style tag to the custom code section of the Head, then republish the site to check results.

Seems there is more informaton on this particular styling using the text fill: Adding Stroke to Web Text | CSS-Tricks - CSS-Tricks

Let me know how that goes.