SOLVED

Re: why is MKTO splitting words in emails?

Go to solution
Mikes_Jones
Level 8

why is MKTO splitting words in emails?

for example

"Thank you for joining us at tod-

ay's event. We hope you enjo-

yed it"

Why is MKTO automatically doing that instead of keeping the wor'ds together? I didn't notice this before, but we got a new template done and it's happening now, so I'm guessing it's somewhere in the code. Anyone know how to easily identify and fix that from happening?

1 ACCEPTED SOLUTION

Accepted Solutions
Dave_Roberts
Level 10

Re: why is MKTO splitting words in emails?

It could be the case that the template uses the word-break or word-wrap styles to deal with text that flows beyond the column.

Here's a link to some more info on that: CSS word-break property  -- you can check out the "Try it Yourself >>" button for some good examples.

Screenshot_041718_060631_PM.jpg

You may need to set the word-break to "normal" with some CSS on your text elements. For example:

<td style="word-break:normal;"> Your text goes here </td>

Depending on how your template is setup (and if this is the case) you might need to put the bolded style above on element that you do not want to wrap.

--

Another similar style that could be causing the same issue is word-wrap: CSS word-wrap property -- that'd work similarly, but with "word-wrap:normal;" instead of word-break.

This might be something that the team who developed your templates could iron-out at a high-level. I think in some cases, you do want the word wrap/break to be set and in other it doesn't make sense, but it could point to an issue with the framework of the email's box model.

View solution in original post

2 REPLIES 2
Dave_Roberts
Level 10

Re: why is MKTO splitting words in emails?

It could be the case that the template uses the word-break or word-wrap styles to deal with text that flows beyond the column.

Here's a link to some more info on that: CSS word-break property  -- you can check out the "Try it Yourself >>" button for some good examples.

Screenshot_041718_060631_PM.jpg

You may need to set the word-break to "normal" with some CSS on your text elements. For example:

<td style="word-break:normal;"> Your text goes here </td>

Depending on how your template is setup (and if this is the case) you might need to put the bolded style above on element that you do not want to wrap.

--

Another similar style that could be causing the same issue is word-wrap: CSS word-wrap property -- that'd work similarly, but with "word-wrap:normal;" instead of word-break.

This might be something that the team who developed your templates could iron-out at a high-level. I think in some cases, you do want the word wrap/break to be set and in other it doesn't make sense, but it could point to an issue with the framework of the email's box model.

Mikes_Jones
Level 8

Re: why is MKTO splitting words in emails?

Thanks Dave - makes a lot of sense!