If your webpage is your store, and your email is your shop window, then your call-to-action (CTA) button is your amazing window display that gets people in. Or something. My metaphor may have fallen apart there.

Needless to say, your CTA is one of the most important parts of your email. And if it’s hard to find, hard to use, or broken in any way, your subscribers are going to run away. (Run away!)

Don’t worry, though. We’re here to help make sure your CTA button isn’t a blood thirsty rabbit driving your subscribers away. In this blog post, we’ll dive a bit deeper into the methods of crafting buttons to ensure they’re bulletproof for your subscribers.

Get ready to learn:

What’s a bulletproof button?

Bulletproof buttons are call-to-action buttons built with code instead of images. You can reliably swap your GIFs, PNGs, and JPEGs for HTML and CSS. By only using code, the button will display in all email clients even with images off, hence making them “bulletproof.”

What’s more, you can update the content and style of your buttons by simply editing your HTML template. You no longer have to waste time crafting buttons in a design tool like Photoshop, uploading them to a server, and updating your HTML.

Don’t use images

I’m going to say this once and then never say it again. The only truly bulletproof button is an image.

*gasp*

I know. But that’s really the only way you can guarantee your button looks exactly the same in 100% of email clients. Because we all know how inconsistent our emails can look across different email clients, apps, and devices.

Despite this, you should never use an image-based button. Image buttons get lost when images are turned off because of image-blocking, and they’re not accessible for your subscribers who use screen readers (more on that in a second).

image email button with images on vs. offImage button losing impact when images are disabled

If your CTAs are contained within images, there’s a good chance that subscribers are missing out on your message. Even worse, they aren’t interacting with your campaigns.

Using image-based CTA buttons also impacts the accessibility of your email. If you’re hiding the context of the CTA inside an image, screen readers may not be able to read them, making your email inaccessible for visually impaired subscribers.

Now that you know more about image buttons, you should realize that my initial statement is only mostly true. Image-based buttons look the same in every email client where images are turned on and only if the subscriber isn’t using a screen reader. So are they actually bulletproof? No. They’re not. And as both of these above mentioned cases are impossible to track using standard email tracking, there’s no way for you to know what percentage of your subscribers are having this bad experience.

So ditch the image CTA and make sure your subscribers can see and use your CTAs no matter what device they’re using.

The makings of a beautiful button design

Buttons are more than just code though. There are several factors that go into making your buttons usable and eye-catching.

Button shape

Make your buttons look like buttons.

We all like making fun and unique buttons, but often if you stray too far from what’s expected, subscribers will miss the intent—and not take action. Yes, the words may say something is clickable, but as they say, “A picture is worth a thousand words.”

examples of standard button shapes

Use standard button shapes to ensure you catch people’s attention, especially if they’re scanning. Standard shapes include:

  • Rounded corners
  • Square corners
  • Pill shaped
  • Ghost button
  • Shadowed button

That isn’t to say you can’t do fun things with buttons. Magic Spoon added some fun animated GIFs to their buttons to draw even more attention to them.

magic spoon email example of buttons with animated GIFs

Button size

With over 40% of subscribers opening emails on mobile devices, according to our annual email client market share data, it’s important that your button is designed so it works across all devices.

If your button is too small, it will be hard to click on mobile devices. If it’s too large, it looks less like a button and more like a design element.

There have been several studies on button sizes on touch screens, but the research seems to be done most commonly with millimeters as the main unit of measurement. Which is less than ideal. But some have made a decent millimeter-to-pixel ratio.

The ideal size for buttons for easy clicking on mobile devices has been translated to be between 42px and 72px (approximately 11-19mm). This seems about average for button height seen around the web, and the buttons we use here at Litmus fall within that range as well.

In one study that went up to 30mm, the tap-to-click accuracy plateaued at 20mm, so there’s a point where button size doesn’t make that much of a difference anymore.

Button space

Make sure there’s enough whitespace around your buttons, too, so they stand out. This also makes it easier for your subscribers to click the correct button.

The best example of this would be an email with lots of links in one paragraph. If you bunch your links close together, your subscribers are never going to accurately click on what you want them to click on, especially on mobile.

Visual feedback

Not every email client supports interactive elements, but where possible, adding a little interactivity to provide visual feedback helps subscribers know their interaction has registered.

It’s an extra sign to them that something is clickable.

This can be as simple as a change in color or as complex as you want to go. (We know sometimes it’s fun to go all out, so don’t hold back—but know when to rein yourself in.)

Our own standard button has a color change as well as a push button effect.

email example of a push button effect

But we did try something new, too, and had a lot of fun with our January newsletter buttons. A great design element that was also fun to “push.”

litmus email example of visual feedback on a button

Button text

Keep your actual CTA copy or label actionable and to the point. Tell subscribers what you want them to do as clearly and concisely as possible.

1 to 5 words is usually enough.

That length also keeps your email scannable. And if you have more to say? Include it in a headline over the button. By regularly keeping CTAs within 1 to 5 words, it makes the rare moment you do go over it stand out in a much more meaningful way.

5 ways to code a bulletproof button

With over 300,000 potential email renderings, is it really surprising you can’t make a one-size-fits-all button that works everywhere?

What you can do is make a button that works almost everywhere. And there are a few different methods for creating these buttons depending on your needs. Take a look through these to figure out which one works best to support your subscribers.

1. Conditional-padding button

Thanks to Mark Robbins for this conditional-padding button. It’s the one we use here at Litmus.

conditional button

This button uses styling on the link to style it for everyone except Outlook. Then, it uses conditional code to add Outlook-specific padding. Since the Outlook padding is controlled separately, you can edit the Outlook padding without impacting what the button looks like in other email clients.

 <a href="https://litmus.com/" style="background-color: #1F7F4C; font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight:bold; text-decoration: none; padding: 14px 20px; color: #ffffff; border-radius: 5px; display:inline-block; mso-padding-alt:0;"> <!--[if mso]> <i style="letter-spacing: 25px;mso-font-width:-100%;mso-text-raise:30pt">  </i> <![endif]--> <span style="mso-text-raise:15pt;">I am a button →</span> <!--[if mso]> <i style="letter-spacing: 25px;mso-font-width:-100%"> </i> <![endif]--> </a> 
email inbox with happy face and checkmark

Did it work?

Broken is not a good look. Test how your buttons look in over 90 email clients, apps, and devices with Litmus Email Previews. And ensure you create on-brand, error-free emails—every time.

Learn more →

 

Pros and cons of a conditional-padding button

Pros:

  • There’s great support in most email clients (see table below).
  • The entire button itself is clickable.

Cons:

  • It requires playing around with the conditional code to get the padding exactly right in Outlook.
  • The Outlook version has squared corners no matter what.

2. VML-based buttons

The traditional approach to bulletproof buttons was popularized by Stig, a developer at Campaign Monitor.

vmlbutton

This approach uses styling on the link itself to structure and style the button for most email clients. Structure is supplied via the line-height and width properties.

As a fallback for Microsoft Outlook, Vector Markup Language (VML) is used within an Outlook-specific conditional comment. The VML creates a box around the link in Outlook, then styles the anchor tag to create the button design for everyone else.

 <div> <!--[if mso]> <v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="http://" style="height:50px;v-text-anchor:middle;width:170px;" arcsize="10%" stroke="f" fillcolor="#1F7F4C"> <w:anchorlock/> <center> <![endif]--> <a href="http://litmus.com" style="background-color:#1F7F4C;border-radius:5px; color:#ffffff; display:inline-block; font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight:bold; line-height:50px; text-align:center; text-decoration:none; width:170px; -webkit-text-size-adjust:none;">I am a button →</a> <!--[if mso]> </center> </v:roundrect> <![endif]--> </div> 

For more complex versions of this button, you would actually create two versions of the button—one in VML and one for everyone else.

Pros and cons of a VML-based button

Pros:

  • There’s great support in most email clients (see table below).
  • The entire button itself is clickable.
  • Rounded corners are maintained in Outlook.

Cons:

  • It relies on the use of an unfamiliar language—VML—that’s proprietary for the Microsoft Office suite, which makes creating new bulletproof buttons and updating existing ones time-consuming and frustrating.
  • Width and height of the bulletproof button must be declared, so any change to the copy of the CTA would require changes to the dimensions of the button.
  • More complex versions of the VML button require two URLs that need to be changed. And some ESPs don’t track the URL in the VML section.
  • VML requires a fixed height and width, so this button doesn’t work very well for templates where the length of the copy in the CTA may vary.

If you don’t want to learn the ins-and-outs of VML (and honestly, who does?), Campaign Monitor has a free online tool for building traditional bulletproof buttons. Buttons.cm makes it easy to craft new CTA buttons that will look great and work well across most email clients.

This was my go-to style for coding buttons when I worked on pharmaceutical emails. The biggest plus is its ability to keep the rounded corners in Outlook, which was needed for that highly regulated industry.

3. Padding-based buttons

padding button

This method uses a simple HTML table for the button. It relies on padding at the table cell level to structure the button as well as HTML attributes and CSS to style the button.

 <table border="0" cellspacing="0" cellpadding="0"> <tr> <td style="padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1F7F4C;" align="center"> <a href="http://litmus.com" target="_blank" style="font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: bold; color: #ffffff; text-decoration: none; display: inline-block;">I am a button →</a> </td> </tr> </table> 

Pros and cons of a padding-based button

Pros:

  • It works well across most email clients (see table below).
  • It uses code email designers are familiar with—HTML and CSS—which makes creating new bulletproof buttons and updating existing ones a breeze.

Cons:

  • The entire button is not clickable, which can lead to friction with subscribers who think they clicked or tapped a button.
  • Outlook doesn’t support rounded corners.

4. Border-based buttons

border button

Border-based buttons take a similar approach to the previous method. Using simple HTML and CSS, you can structure and style your calls-to-action. However, instead of relying on padding on the table cell level for structure, add thick borders to the link itself to build your CTA.

 <a href="http://litmus.com" target="_blank" style="font-size: 18px; font-family: Helvetica, Arial, sans-serif; color: #ffffff; font-weight: bold; text-decoration: none; border-radius: 5px; background-color: #1F7F4C; border-top: 12px solid #1F7F4C; border-bottom: 12px solid #1F7F4C; border-right: 18px solid #1F7F4C; border-left: 18px solid #1F7F4C; display: inline-block;">I am a button →</a> 

Note that the link tag is set to be a block-level element and that borders are used to provide our “padding.” This ensures the entire button is hoverable and clickable, even in older desktop clients.

Pros and cons of a border-based button

Pros:

  • All styling is on the actual link tag, which simplifies the code.
  • Only one button is used. No double buttons or confusing VML code needed.
  • You don’t need specific height or width definitions, making buttons highly scalable.

Cons:

  • Outlook reduces the size of the borders by a small amount.
  • Outlook does not recognize <a> tags as block-level elements.
  • Outlook doesn’t support rounded corners.
  • There’s no ability to add more advanced styling such as extra borders on the exact link element.

5. Padding-and-border-based buttons

The padding-and-border-based buttons combine elements of the previous two approaches.

padding and border email button

Essentially, this approach uses the same structure of styling the link with both padding and at least a solid 1px border. Then, a background color is applied to the <td> to fill the entire background of the link. The background color needs to be applied to the <td> instead of the <a> in this instance because Outlook doesn’t recognize horizontal padding on the <a> tag (since it doesn’t support such styling for non block-level HTML elements).

 <table border="0" cellspacing="0" cellpadding="0"> <tr> <td align="center" style="border-radius: 5px; background-color: #1F7F4C;"> <a href="https://litmus.com" target="_blank" style="font-size: 18px; font-family: Helvetica, Arial, sans-serif; color: #ffffff; font-weight: bold; text-decoration: none;border-radius: 5px; padding: 12px 18px; border: 1px solid #1F7F4C; display: inline-block;">I am a button →</a> </td> </tr> </table> 

Pros and cons of a padding-and-border button

Pros:

  • Only one button needs to be coded, which makes buttons using this technique easy to update.
  • Specific dimensions for the buttons are not required.
  • Background images can be supported with this method.

Cons:

  • Styling is separated between a <td> and <a>, so both need to be updated when there are changes in style for the button.
  • Outlook doesn’t support rounded corners.

What about semantic HTML?

We love using semantic html, but unfortunately, the <button> tag is just not supported in email. It’s reduced to a <div> in most email clients, which is either not clickable or not rendered correctly.

Nesting divs or tables inside your anchor tags can be done. But it’s not semantically correct. Also, both of these methods result in buttons that don’t work in Outlook. In the case of tables, the link isn’t clickable, and in the case of divs… well, see for yourself:

Div button Div button in Outlook
div button div button in Outlook

 

Advanced hacks and enhancements

All of the above methods are great starting points in creating bulletproof buttons, but each technique can be further modified to create better bulletproof buttons.

Horizontal padding hack for Outlook

Outlook doesn’t support horizontal padding, which can result in your CTA text being very close to the left and right edges of your bulletproof button.

A quick hack that can be used to increase the horizontal “padding” for Outlook is to conditionally add inline, non-breaking space(s) on each side of the link. The conditional padding button already makes use of this along with the letter-spacing property to add space on the sides of the button.

 <!--[if mso]> <![endif]--> 

Progressive enhancement with media queries

To improve the design of your bulletproof button, you can use advanced styling like borders, gradients, web fonts, hover effects, and more with media queries.

standard email button vs. progressively enhanced button

Outlook enhancements with VML

If you want to make your buttons really shine, you can dive into VML to add a little pizazz to your buttons.

As frustrating as VML can be, it allows you to create some very fun buttons with background images and gradients as well as shadows. There’s definitely a degree of trial and error, but the results can be stunning.

Check out our button from our January newsletter for an example:

Email example with fun VML buttonUsing VML to add a button shadow in Outlook to match the drop shadow in other email clients

 

So, what is email client support like?

Email clients have updated their support since this post was first written in 2017, so these buttons are very close to bulletproof. The least amount of support is in Outlook, as expected, but even there, the buttons aren’t very broken.

You can check out the full Litmus tests here.

Email Client Conditional VML Padding Border Padding + Border
Apple Mail ✔ ✔ ✔ ✔ ✔
Lotus Notes ✔ ✔ ✔
IBM Notes 10 ✔ ✔ ✔
Outlook 2007-2016 ✔* ✔ ✔* ✔*† ✔*
Outlook for Mac ✔ ✔ ✔ ✔ ✔
Office365 (desktop) ✔* ✔ ✔* ✔*† ✔*
Gmail ✔ ✔ ✔ ✔ ✔
AOL ✔ ✔ ✔ ✔ ✔
Yahoo ✔ ✔ ✔ ✔ ✔
Outlook 365 (webmail) ✔ ✔ ✔ ✔ ✔
Outlook.com ✔ ✔ ✔ ✔ ✔
Mail.ru ✔ ✔ ✔ ✔ ✔
GMX.de ✔* ✔ ✔* ✔* ✔*
T-Online.de ✔ ✔ ✔ ✔ ✔
Web.de ✔* ✔ ✔* ✔* ✔*
Gmail App
(Android)
✔ ✔ ✔ ✔ ✔
Gmail App (iOS) ✔ ✔ ✔ ✔ ✔
iPhone/iPad ✔ ✔ ✔ ✔ ✔
Samsung Mail ✔ ✔ ✔ ✔ ✔
Outlook (Android) ✔ ✔ ✔ ✔ ✔
Outlook (iOS) ✔ ✔ ✔ ✔ ✔
Dark Mode
Apple Mail ✔ ✔ ✔ ✔ ✔
Gmail App ✔ ✔ ✔ ✔ ✔
iPhone/iPad ✔ ✔ ✔ ✔ ✔
Office 365
(desktop)
✔ ✔ ✔ ✔
Outlook.com ✔ ✔ ✔ ✔ ✔

* Rounded corners do not render. † Button size is distorted.

Dark Mode support and hacks

Dark Mode brings an interesting twist on bulletproof buttons. Like most HTML and CSS, you can control the Dark Mode styles for buttons with media queries.

However, Gmail and Outlook.com can invert the button colors.

If you want to retain the background colors on your buttons, there are some hacks. Watch out for inverting the color of the copy on the buttons, though. There’s no way to keep your font colors from switching in Outlook, but you can keep white text on your buttons white with Rémi Parmentier’s CSS blend workaround.

The biggest lack of support in these bulletproof button options is the VML buttons.

In Dark Mode, Office 365 will invert your background colors, but it won’t invert the fill color in the VML. So you end up with buttons that look like this:

VML button in dark mode

Are your campaigns bulletproof?

Regardless of which approach you take, using bulletproof buttons for calls-to-action is vastly superior to relying on images. Even in email clients that block images, bulletproof buttons ensure your message will be clear to your audience, increasing the likelihood of your subscribers engaging. No more broken emails!

Litmus logo

Create on-brand, error-free emails with Litmus

Broken emails—especially CTA buttons—mean less clicks and conversions. Ouch. Litmus helps you ensure everything’s perfect with an automated check for image-blocking, broken links, and more.

Start your free trial →

 

What’s your favorite bulletproof button technique?

Let us know how you create bulletproof email buttons in the comments below.

Originally published on November 1, 2017, by Jason Rodriguez. Last updated on Thursday, June 10, 2021.

The post How to Create Beautiful Bulletproof Email Buttons That Absolutely Work appeared first on Litmus.