Question
HTML editor formatting issues
When composing/editing text in the email editor (using any template, including the “blank” template), text gets incorrectly formatted. For example, type the following:
This is a test <paragraph break here by hitting the enter key>
Another test
View the HTML. It should look like this:
<p>This is a test</p>
<p>Another test</p>
Now place the cursor in front of the “A” (in “Another”) and click the BACK key to place everything on one line, in the same paragraph. As soon as I do this, the font changes to Verdana and the size shrinks. Looking at the HTML, you can see where Marketo magically added <span> tags:
<p>This is a test<span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;">Another test</span></p>
How can we prevent this? This is going to cause all sorts of issues for our team of global users of the system? The goal is develop fool-proof email and landing page templates so that our marketers can customize the text to their needs without having to worry about formatting issues like this.
This is a test <paragraph break here by hitting the enter key>
Another test
View the HTML. It should look like this:
<p>This is a test</p>
<p>Another test</p>
Now place the cursor in front of the “A” (in “Another”) and click the BACK key to place everything on one line, in the same paragraph. As soon as I do this, the font changes to Verdana and the size shrinks. Looking at the HTML, you can see where Marketo magically added <span> tags:
<p>This is a test<span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;">Another test</span></p>
How can we prevent this? This is going to cause all sorts of issues for our team of global users of the system? The goal is develop fool-proof email and landing page templates so that our marketers can customize the text to their needs without having to worry about formatting issues like this.