Email - Font Size Distortion | Community
Skip to main content
October 26, 2016
Solved

Email - Font Size Distortion

  • October 26, 2016
  • 3 replies
  • 1970 views

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.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Frank_Breen2

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.

3 replies

Frank_Breen2
Frank_Breen2Accepted solution
Level 8
October 27, 2016

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.

October 28, 2016

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?

October 28, 2016

Actually I figured out for the template. Thanks again!