Font-smoothing: antialiased possible?

Hey guys, I would like to know if there is a way to enable: -webkit-font-smoothing: antialiased.
Is there an option I’m missing?
Thanks in advance.

Just put this in the header section in the custom code and your good to go. :slight_smile:

<style type="text/css">

body {
  -webkit-font-smoothing: antialiased;
}      
</style>
3 Likes

You can place custom code in Site Settings:

<style>
* {
  -webkit-font-smoothing: antialiased;
}
</style>
4 Likes

I’m getting a code validation error, any idea what I’m doing wrong ?