Help

Re: Email font of Values

1611 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Attila_Nagy
5 - Automation Enthusiast
5 - Automation Enthusiast

Hello!

Is there a way to set or change the font of a value in an email?
I tried:
HTML

4 Replies 4

In a quick test, I was able to get that to change the color of an inserted item. To change the typeface, you’d use the font-family property. I was able to get this to work as well in a quick test:

Screen Shot 2021-09-06 at 10.06.56 AM

Here’s a more in-depth guide on using the font-family property:

https://www.w3schools.com/Css/css_font.asp

Thnak you again for the quick reply!
I tried this, but it doesn’t work for me.

HTML

Email preview

Very strange. I was able to get this working in both email action types (Airtable & Gmail), and the test showed the result properly. Maybe try building a new automation from scratch? Sometimes automations wig out for no clear reason, and a fresh automation will work where the other one won’t.

Mimmuli
4 - Data Explorer
4 - Data Explorer

This worked for me:

<!DOCTYPE html>

<h1 style="font-family:Poppins, Helvetica, sans-serif;"> Insert your heading here</h1> <p> This is the paragraph for other text.</p>

I recommend using these CSS Web Safe Fonts: https://www.w3schools.com/cssref/css_websafe_fonts.php. I wanted to use Poppins font and it seems to only work in Outlook desktop app, so that is why I have the Helvetica as a back up font. For different colors you can just use the "color:x"