How can I enlarge the subscription button or replace it with my own image? The default subscription is very small and I can’t figure out how to enlarge it.
Subscription Button
Posted in Groups PayPal
How can I enlarge the subscription button or replace it with my own image? The default subscription is very small and I can’t figure out how to enlarge it.
Hi Liz,
You can use css to customize the button. Something like this:
.checkout-form .fields input {
background:url(/your-image.png) no-repeat;
cursor:pointer;
width: 200px;
height: 100px;
border: none;
}
Kind Regards,
Antonio B.