HOW TO USE 2 X CTA'S IN A PRICING BLOCK
You'll need to create a custom content block and add some CSS styling as well as put the HTML code into the price block itself.
Note: This will change all buttons on the page. If you only want the buttons altered for the pricing block, then be sure to add in the Section ID in the custom code block as well.
Here's The Code You'll Be Needing
CSS STYLING --- CUSTOM CODE BLOCK
<style>
.btn {
border: none;
border-radius: 10px;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 30px 0 rgba(0,0,0,0.19);
padding: 15px 40px;
text-align: center;
text-decoration: none;
font-weight: 700;
line-height: 1.5;
display: inline-block;
width: 100%;
font-size: 18px;
cursor: pointer;
}
</style>
HTML CODE FOR ACTUAL PRICING BLOCK
<form action=
"https://www.yourcheckoutlink.com" method="get" target="_blank">
<button class="btn"><span style="vertical-align: inherit; width: 100%;">Payment Plan</span></button></form>