Re: Can you add new fonts to the landing page rich text editor?

Anonymous
Not applicable

Can you add new fonts to the landing page rich text editor?

Can you add new fonts to the landing page rich text editor? I am trying to design a nice looking landing page and am feeling very restricted by the small list of boring fonts available in the editor.
Tags (1)
8 REPLIES 8
Anonymous
Not applicable

Re: Can you add new fonts to the landing page rich text editor?

Hi Lisa,

You can utilize custom fonts by add them in via CSS.  Here is a good article by Google: https://developers.google.com/fonts/docs/getting_started.
Justin_Cooperm2
Level 10

Re: Can you add new fonts to the landing page rich text editor?

We have full Google font support in the update version of the landing page text editor. Coming out soon.
Kathi_Gosche
Level 4

Re: Can you add new fonts to the landing page rich text editor?

Did this get added yet?

Justin_Cooperm2
Level 10

Re: Can you add new fonts to the landing page rich text editor?

Google fonts are available in the landing page text editor. If you want to use a web font that isn't listed, it's possible, but you'll need to insert it manually.

Anonymous
Not applicable

Re: Can you add new fonts to the landing page rich text editor?

If its possible, how can I add new fonts into the RTF-Editor font menu?

Justin_Cooperm2
Level 10

Re: Can you add new fonts to the landing page rich text editor?

You can't add anything to the rich-text editor font dropdown. What you do is insert the appropriate reference to the web font in the <head> section of your landing page template (or individual landing page), then in the template specify that the editable text element should use your web font as the first choice. The rich-text editor will just show "Default" meaning it will just inherit whatever the template is enforcing on that section.

So...

if you have

<div class="mktoText" style="font-family:myWebFontName, Arial, sans-serif;">My Text Element</div>

Then, that div will be using your web font and when you open it up in the rich-text editor it will just say "Default".

Justin

Anonymous
Not applicable

Re: Can you add new fonts to the landing page rich text editor?

I had the same idea and it also works. But that way you can only add one font.

I also tried to override the fonts in the dropdown menu by import a font and use the same name. But doesn't work. Maybe some kind of force is needed.

Justin_Cooperm2
Level 10

Re: Can you add new fonts to the landing page rich text editor?

You actually can add as many as you want. If you're comfortable, you could easily wrap your entire rich-text section in a <div> with whatever font-family you want from within the HTML editor of our rich-text editor. Alternatively, you can use a "String" variable in a guided landing page to allow the user to type in what the font should be for various sections that you could code into your template...

Justin