how to use custom CSS to change font style
-
I am trying to force all text in emails to use “Nunito” font style
I have tried adding the following code into Custom CSS box
<link href=”https://fonts.googleapis.com/css?family=Nunito” rel=”stylesheet”>
p {
font-family: ‘nunito’, sans-serif;
};
h1 {
font-family: ‘nunito’, sans-serif;
};
h2 {
font-family: ‘nunito’, sans-serif;
};
h3 {
font-family: ‘nunito’, sans-serif;
};
Apparently in the preview the body text font style changes, but in the emails I sent to myself (Gmail and yahoo) it doesn’t keep the font.
All the rest of the email remains unaffected by the font change even in the preview (apparently the font name is hardcoded in each instance of text).
Is there a way I can change the font in the emails to give a look consistent to my brand?
thanks
Francesco
- The topic ‘how to use custom CSS to change font style’ is closed to new replies.