Is it possible to modify OOTB campaign components or to introduce new components in Campaign Standard?
I'm facing an issue with the Adobe Campaign image component. It works correctly in most of the cases, but when placed inside a 1:1 column and previewed the email delivery on Outlook and Office 365 apps, the image is cut off.
The image component HTML looks like the below,
<!--[if mso]><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td style="text-align: center;"><![endif]-->
<img src="/path/to/image"
width="340" height="227" title="Title"
data-nl-imgep-perso-attr-alt="ALT" alt="ALT">
<!--[if mso]></td></tr></table><![endif]-->
The modifications required for the image to render correctly in all the outlook apps is as follows,
<!--[if mso]><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td style="text-align: center; line-height:0;"><![endif]-->
<img src="/path/to/image"
style="width:340px; height:227px;" width="340" height="227" title="Title"
data-nl-imgep-perso-attr-alt="ALT" alt="ALT">
<!--[if mso]></td></tr></table><![endif]-->
-
A proper height and width in pixels for the <img> tag.
-
line-height of 0 for the mso specific conditional which is wrapping the <img> tag.
Is it possible I could modify the image component HTML so that these changes can be applied globally and for any future usages. Or what would be the best way to address this?
Or is there any other solution from Campaign directly to resolve the image cut off issue on Outlook?
Thanks