KM Bulletproof Button - Padding+Border-Based Approach Shared by Kevin Mandeville, 2016-02-10 10:14:37 Tagged: Link, All 2 Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet <table border="0" cellspacing="0" cellpadding="0"> <tr> <td align="{align}" style="border-radius: {border-radius}px;" bgcolor="#{bgcolor}"> <a href="{link}" target="_blank" style="font-size: {font-size}px; font-family: {font}; color: #{color}; text-decoration: {decoration}; border-radius: {border-radius}px; padding: {padding}; border: {border}; display: inline-block;">{button text}</a> </td> </tr> </table> View this Snippet
KM Bulletproof Button - Border-Based Approach Shared by Kevin Mandeville, 2016-05-18 17:47:03 Tagged: Link, All 2 Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet <table border="0" cellspacing="0" cellpadding="0"> <tr> <td> <a href="{link}" target="_blank" style="font-size: {font-size}px; font-family: {font}; color: #{color}; text-decoration: {decoration}; border-radius: {border-radius}px; -webkit-border-radius: {webkit-border-radius}px; background-color: #{bgcolor}; border-top: {border-top}; border-bottom: {border-bottom}; border-right: {border-right}; border-left: {border-left}; display: inline-block;">{button text}</a> </td> </tr> </table> View this Snippet
KM Bulletproof Button - Padding-Based Approach Shared by Kevin Mandeville, 2015-08-19 03:06:08 Tagged: Link, All 1 Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet <table border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#{bgcolor}" style="padding: {padding}; -webkit-border-radius: {webkit-border-radius}; border-radius:{border-radius};" align="{align}"> <a href="{link}" target="_blank" style="font-size: {font-size}px; font-family: {font}; color: #{color}; text-decoration: {decoration}; display: {display};">{button text}</a> </td> </tr> </table> View this Snippet
KM Bulletproof Button - VML Approach Shared by Kevin Mandeville, 2019-09-20 16:11:05 Tagged: Link, All 7 Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet <div> <!--[if mso]> <v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="{link}" style="height:{height}px;v-text-anchor:middle;width:{width}px;" arcsize="{arcsize}%" strokecolor="#{strokecolor}" fillcolor="{fillcolor}"> <w:anchorlock/> <center style="color:#{color};font-family:{font};font-size:{font-size}px;">{button text}</center> </v:roundrect> <![endif]--> <a href="{link}" style="background-color:#{bgcolor};border:{border};border-radius:{border-radius};color:#{color};display:{display};font-family:{font};font-size:{font-size}px;line-height:{line-height}px;text-align:{align};text-decoration:{decoration};width:{width}px;-webkit-text-size-adjust:none;mso-hide:all;">{button text}</a> </div> View this Snippet
KM Remove Blue Links on Apple Devices Shared by Kevin Mandeville, 2016-05-27 17:58:58 Tagged: Link, WebKit 8 Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet a[x-apple-data-detectors] { color: inherit !important; text-decoration: none !important; font-size: inherit !important; font-family: inherit !important; font-weight: inherit !important; line-height: inherit !important; } View this Snippet
GS Simple Hyperlink Shared by Glenn Smith, 2015-08-18 18:11:17 Tagged: Link, All Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet <a href="{link}" target="_blank" alias="{alias}" style="{style}">{content}</a> View this Snippet
SM Bulletproof button – border based faux-padding, no VML, no tables Shared by Stig Morten Myre, 2016-04-05 12:16:39 Tagged: Link, All 2 Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet <style type="text/css"> .btn a { background-color: #99c739; border-color: #99c739; border-style: solid; border-width: 10px 20px; border-radius: 4px; color: #ffffff; display: inline-block; font-family: sans-serif; font-size: 14px; font-weight: bold; line-height: 20px; text-align: center; text-decoration: none; transition: all 0.2s ease-in; } .btn a:hover, * [lang=x-btn] a:hover { background-color: #8fba35 !important; border-color: #8fba35 !important; } </style> <div class="btn" lang="x-btn"> <a href="#"> Click here or else </a> </div> View this Snippet
SM Bulletproof ghost button – no VML, no tables Shared by Stig Morten Myre, 2018-05-22 20:27:33 Tagged: Link, All 13 Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet <style type="text/css"> .btn a { border: 2px solid #556270; border-radius: 4px; color: #556270; display: inline-block; font-family: sans-serif; font-size: 14px; font-weight: bold; line-height: 20px; padding: 10px 20px; text-align: center; text-decoration: none; transition: all 0.2s ease-in; } .btn a:hover, * [lang=x-btn] a:hover { border-color: #3f4953 !important; color: #3f4953 !important; } </style> <div class="btn" lang="x-btn"> <a href="#"> Click here or else </a> </div> View this Snippet
BG Bulletproof Buttons by Litmus Shared by Bill Goodspeed, 2018-04-18 14:17:23 Tagged: Link, All 3 Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet <a href="#" style="font-size:18px;font-family:'proxima_nova_rgregular',Proxima Nova,Helvetica,Arial,sans-serif;font-weight:normal;color:#ffffff;width:110px;text-decoration:none;border-radius:28px;background-color:#62be7f;padding:16px 28px;border:1px solid #62be7f;display:block" target="_blank">Button text →</a> View this Snippet
GS Follow Twitter Account ahref Shared by Glenn Smith, 2016-04-06 22:00:28 Tagged: Link, All Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet <a href="http://twitter.com/intent/user?screen_name=litmusapp">Follow @litmusapp</a> View this Snippet
EG Delete or change the blue links on dates in the Zimbra webmail (free - laposte.net) Shared by Emmanuel Gérard, 2021-03-09 04:42:39 Tagged: Link, All 2 Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet <style type="text/css"> span.Object { color: inherit !important; } span.Object-hover { color: inherit !important; text-decoration:none !important; } </style> View this Snippet
KM Override Gmail Blue Links Shared by Kevin Mandeville, 2018-08-14 19:05:05 Tagged: Link, Gmail 9 Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet u + #body a { color: inherit; text-decoration: none; font-size: inherit; font-family: inherit; font-weight: inherit; line-height: inherit; } /* ADD id="body" TO body TAG*/ View this Snippet
KM Remove Samsung Blue Links Shared by Kevin Mandeville, 2019-01-08 19:39:57 Tagged: Link, Android 3 Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet #MessageViewBody a { color: inherit; text-decoration: none; font-size: inherit; font-family: inherit; font-weight: inherit; line-height: inherit; } View this Snippet
BF Remove blue links in all clients Shared by Barry Flammia, 2018-01-16 10:39:27 Tagged: Link, All Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet a[x-apple-data-detectors], u+#body a, #MessageViewBody a { color: inherit!important; text-decoration: none!important; font-size: inherit!important; font-family: inherit!important; font-weight: inherit!important; line-height: inherit!important; } View this Snippet
RW Button works in nearly all clients with Link not blue in Outlook Shared by Ralf Witthohn, 2018-02-23 16:51:48 Tagged: Link, All Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet <a href="#" style="background-color: #ada124; background-image: linear-gradient(to top, #EF3731, #ada124); border: 1px solid #ada124; border-radius: 3px; color: #ffffff; display: inline-block; font-family: sans-serif; font-weight: bold; mso-border-alt: 8px solid #ada124; mso-padding-alt: 0; padding: 8px 16px; text-decoration: none;"><strong>Button</strong></a> View this Snippet
ID Ibcbet - Dafta Ibcbet Indonesia Shared by ibcbet daftar ibcbet, 2020-10-01 21:44:13 Tagged: Link, Gmail Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet Agen <a href="http://www.cloudcomputingcentre.co.uk/">ibcbet</a> menyediakan daftar ibcbet dengan murah dan terbaru tanpa biaya apapun dengan bantuan dari customer service ibcbet asia yang online 24 jam memandu member ibcbet indonesia memainkan taruhan bola ibcbet View this Snippet