Marketo footer breaking after rotation (portrait to landscape and back) on iOS, anybody else? | Community
Skip to main content
micahb94192315
Level 1
November 30, 2016
Question

Marketo footer breaking after rotation (portrait to landscape and back) on iOS, anybody else?

  • November 30, 2016
  • 1 reply
  • 1297 views

after sending a test email, I noticed that the footer generated by Marketo breaks after rotating the iPhone from portrait to landscape and then back to portrait. Has any body else experienced this? Has anybody else found a fix for this?

Thanks

Micah Bermoy

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

1 reply

Frank_Breen2
Level 8
December 2, 2016

This is a strange one, it looks like you are using the out of the box code slightly changed, which looks something like this:

<p><font face="Verdana" size="1">If you no longer wish to receive these emails, click on the following link: <a href="%mkt_opt_out_prefix%UnsubscribePage.html?mkt_unsubscribe=1&mkt_tok=##MKT_TOK##">Unsubscribe</a><br/></font></p>

You should try adding a <table> around your unsubscribe message so that in flows better, right now if it's in a <p> only, that may be causing the issue on iOS.

Something like:

<table>

  <tbody>

    <tr>

      <td><p><font face="Verdana" size="1">If you no longer wish to receive these emails, click on the following link: <a href="%mkt_opt_out_prefix%UnsubscribePage.html?mkt_unsubscribe=1&mkt_tok=##MKT_TOK##">Unsubscribe</a><br/>

          </font></p></td>

    </tr>

  </tbody>

</table>

I'd include whatever standard styling you have of course. Without seeing the full raw code and the unsubscribe code, it's hard to fully answer your question however.