Yahoo centering email

Anonymous
Not applicable

Yahoo centering email

We have a series of emails setup using the Skeleton (Marketo Starter Template).  The emails render correctly in everything except for Yahoo.  For some reason, Yahoo mail is centering the email.  We have not made any edits to the Skeleton template.  Anyone familiar with this issue and how it can be solved?

Yahoo centering email.jpg

Tags (2)
1 REPLY 1
Casey_Grimes
Level 10

Re: Yahoo centering email

Apply style="table-layout: fixed;" to your outermost container table.

Additionally, Yahoo does respect its own unique media queries, so I recommend adding the following to your CSS:

@media yahoo {

            .yhide { display: none !important; }

            .ywauto { width: auto !important;}

        }