emailmonday / Cerberus

A few simple, but solid patterns for responsive HTML email templates and newsletters. Even in Outlook and Gmail.

Home Page:https://www.cerberusemail.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Button up Buttons

TedGoas opened this issue · comments

Shore up the button code (including borders) and remove all those dang  's!

Something like this should do it:

.button-td-primary:hover,
    .button-a-primary:hover {
    background: #0077CC !important;
    border-color: #0077CC !important;
}

<td class="button-td button-td-primary" style="border-radius: 4px; background: #222222; text-align: center;">
     <a class="button-a button-a-primary" href="https://google.com/" style="background: #222222; border: 1px solid #000000; font-family: sans-serif; font-size: 15px; line-height: 15px; text-decoration: none; padding: 13px 17px; display: block; border-radius: 4px;"><span class="button-link" style="color:#ffffff">Primary Button</span></a>
</td>