View Standard Fix
ERROR TYPE Target

Outlook Email Broken Layout Fix: Resolve Outlook Button Border Collapsing for WCAG Accessibility Violations

Accessibility failures prevent screen readers from navigating templates, isolating disabled subscribers and increasing unsubscribe rates. Below is the targeted integration guide to fix Outlook Button Border Collapsing inside Outlook 2013 templates when using HubSpot.

Technical Breakdown

Outlook 2013 strips border-radius on anchor layouts and reduces the clickable area.

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. Inject correct table roles (role='presentation') and keep color pairings above the WCAG AA contrast threshold of 4.5:1.

Remediation Code Block

To guarantee perfectly rounded buttons inside Outlook, we must generate a hybrid VML (Vector Markup Language) roundrect structure overlaid with normal HTML tables. VML is read only by Outlook, while WebKit clients read the HTML layout. In your HubSpot campaign manager, make sure you configure your links to run via {{ unsubscribe_link }}.

<!--[if mso]>
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="{{ unsubscribe_link }}" style="height:44px;v-text-anchor:middle;width:200px;" arcsize="15%" stroke="f" fillcolor="#720e9e">
  <w:anchorlock/>
  <center style="color:#ffffff;font-family:sans-serif;font-size:13px;font-weight:bold;">Click Here</center>
</v:roundrect>
<![endif]-->
<!--[if !mso]><!-->
<table role="presentation" border="0" cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
  <tr><td align="center" bgcolor="#720e9e" style="border-radius:6px;"><a href="{{ unsubscribe_link }}" style="padding:12px 24px;color:#ffffff;display:inline-block;text-decoration:none;font-weight:bold;">Click Here</a></td></tr>
</table>
<!--<![endif]-->

Live Code Sandbox Test

Interactive HubSpot Custom Sandbox

Target Environment: Outlook 2013

How to Deploy inside HubSpot

1

Copy the fixed VML or table wrapper code block from the remediation box above.

2

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.

Targeted Fixes by Use Case & Industry