SOLVED

Re: Email - Font Size Distortion

Go to solution
Anonymous
Not applicable

Email - Font Size Distortion

I have not come across any clear answers on this yet so I wanted to find out.

I understand how Outlook works and how it converts to pt. However, is there a way to edit the code so that if I have my font size in Marketo set at 12px that it shows up as 12pt in Outlook?  I don't want to increase the size in the Marketo template because my recipients with Gmail will get email copy that shows far too large.

1 ACCEPTED SOLUTION

Accepted Solutions
Frank_Breen2
Level 10

Re: Email - Font Size Distortion

You can try something like this:

<!--[if mso]>

<style type='text/css'>

.primary-font {

  font-size: 12px !important;

}

</style>

<![endif]-->

Add the above class to where the font is.

More here: Outlook Conditional CSS | Email Design Reference.

View solution in original post

3 REPLIES 3
Frank_Breen2
Level 10

Re: Email - Font Size Distortion

You can try something like this:

<!--[if mso]>

<style type='text/css'>

.primary-font {

  font-size: 12px !important;

}

</style>

<![endif]-->

Add the above class to where the font is.

More here: Outlook Conditional CSS | Email Design Reference.

Anonymous
Not applicable

Re: Email - Font Size Distortion

Hey thanks! It works on the email editor end. I did try cloning the template to create a new one where I can add this as well but it doesn't save after doing so. Can this not be added on the template end?

Anonymous
Not applicable

Re: Email - Font Size Distortion

Actually I figured out for the template. Thanks again!