How it's done
- Add the CSS below to your CSS Override.
- Change the colors (underlined) to match your site.
- Create a text link.
- Bold and Italicize the link.
- Save and Publish.
When you view the page, you will see the text link is now a button!
CSS
/*===== THEMELOGIC.COM EASY BUTTONS =====*/
.HtmlContent strong > em > a,
.HtmlContent em > strong > a {
color: #ffffff;
background-color: #ff0000;
border: 1px solid #ff0000;
text-decoration: none;
padding: 10px 20px;
border-radius: 20px;
display: inline-block;
font-style: initial;
font-weight: 400;
}
.HtmlContent strong > em > a:hover,
.HtmlContent em > strong > a:hover {
background-color: #3E1393;
border-color: #3E1393;
color: #ffffff;
}