Hi AJF ,
Thanks for reaching out to us!
Unfortunately, we currently do not have a setting for this, but it might be possible to do this with custom CSS.
Here's a simple one that adds a red border to the buttons that changes to blue on hover:
.buttonizer-button {
border: red 2px solid;
}
.buttonizer-button:hover {
border-color: blue;
}
Let me know if this works for you! 😄