Hi surviphil ,
Thanks for reaching out to us!
For rounding out the corners of the button, you can use pixels instead of percentage when setting the border-radius of the button.
This is with 50px borders instead of 10%:
Regarding bringing the icon closer to the text, we unfortunately don't have a setting to do this.
But you can perhaps use a custom CSS to achieve this.
Here's a custom CSS that you can use:
.buttonizer .buttonizer-button i.fas.fa-headset {
/* decrease 15px to shorten the left side of the button */
margin: 0px 0px 0px 15px;
/* increase 12px to bring the icon closer to the text */
transform: translate(12px, 0px);
}
Just copy and paste this into WordPress' Additional CSS.
It should end up looking like this:
Let me know if this works for you! 😄