CSS/HTML Email Font and Font Size

Discussion, questions and support.
Post Reply
laapa
Posts: 1
Joined: Oct 29th, ’24, 18:36

Post by laapa » Oct 29th, ’24, 19:17

What is the exact process to format text within an HTML email and specifying a font family and font size?

I have tried creating an additional Text Expander called and changed it to HTML format and entered:

<span style="font-size: 22px; font-family: Arial, sans-serif; color: #222222;">

Also created a closing span tag called </span>

But I'm not sure how to wrap the insert code in my original email or where to close the span.

Here's what I have tried:

%INSERT_css%
Dear %INPUT_Contact%,
%INSERT_cssc%
User avatar
Tom
Posts: 849
Joined: Nov 24th, ’15, 23:39

Post by Tom » Oct 30th, ’24, 19:02

This works for me (HTML formatting):

Code: Select all

<span style="font-size: 22px; font-family: Arial, sans-serif; color: #222222;">Dear %INPUT_Contact%,</span>
Post Reply