Fix Padding & Margin Collapsing in Mozilla Thunderbird — HubSpot Guide for Financial Services & Banking
Financial emails carry high-compliance requirements. Layout collapses, overlapping text, or accessibility failures can lead to compliance audits and client confusion. Below is the targeted integration guide to fix Padding & Margin Collapsing inside Mozilla Thunderbird templates when using HubSpot.
Technical Breakdown
Mozilla Thunderbird uses the Gecko which lacks support for standard rendering rules. This causes Padding & Margin Collapsing elements to break or collapse when rendering templates.
HubSpot Behaviors
HubSpot's COS template manager automatically wraps content blocks in dynamic div structures to support their drag-and-drop system. These extra wrappers force styling inheritances that override inline td paddings, leading to spacing collapses in Outlook. Setting explicit table element attributes is crucial. Enforce strict WCAG color contrast standards across your statement tables and summary grids to ensure legibility and regulatory compliance.
Remediation Code Block
To ensure spacing works reliably, apply all structural paddings directly to HTML td elements inside tables. Do not apply paddings or margins to raw divs, as Outlook will strip them. For vertical spacing, use explicit spacer tables or empty rows. In your HubSpot campaign manager, make sure you configure your links to run via {{ unsubscribe_link }}.
<table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td height="20" style="font-size: 1px; line-height: 1px;"> </td>
</tr>
<tr>
<td style="padding: 15px; background-color: #f1f1f1;">
Content with padding and margin
</td>
</tr>
<tr>
<td height="20" style="font-size: 1px; line-height: 1px;"> </td>
</tr>
</table>Live Code Sandbox Test
How to Deploy inside HubSpot
Copy the fixed VML or table wrapper code block from the remediation box above.
In HubSpot's Design Manager, edit the modules section. Create a 'Rich Text' or 'HTML' module block. Double-click the block, choose 'Tools' or 'Advanced', click 'Source Code', and drop the code snippet inside.