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?
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;}
}