Comparing Scenario A and Scenario B images from the GMAIL app for the same newsletter, the highlighted portion in Scenario B is replaced by an image. Ideally, I want to achieve the properly aligned 600px width of Scenario B with text itself as shown in Scenario A.
The problem I'm encountering is that the layout is wrapping like a mobile view, causing the template's overall width to decrease.
Different code snippets for Scenario A & Scenario B
Scenario A:
<div style="background-color:#f6f4f5;padding:0;margin:0 auto;width:100%!important">
<div style="overflow:hidden;color:transparent;width:0;font-size:0;min-height:0">
</div>
<table width="100%" cellspacing="0" cellpadding="0" bgcolor="#f6f4f5" border="0" align="center" style="table-layout:fixed;font-family:Helvetica,Arial,sans-serif">
... (Content continues)
Scenario B:
<div style="background-color:#f6f4f5;padding:0;margin:0 auto;width:100%!important">
<div style="overflow:hidden;color:transparent;width:0;font-size:0;min-height:0">
</div>
<table width="100%" cellspacing="0" cellpadding="0" bgcolor="#f6f4f5" border="0" align="center" style="table-layout:fixed;font-family:Helvetica,Arial,sans-serif">
... (Content continues)
Seeking assistance on how to resolve this issue.