כדי שהכפתור יהיה עגול, צריך להגדיר לו גובה ורוחב קבועים. אפשר כמובן לשנות ממה שרשום פה בקוד לגדלים אחרים אבל הרוחב והגובה חייבים להיות אחידים.
selector .elementor-button {
width: 300px !important;
height: 300px !important;
display: flex !important;
justify-content: center !important;
align-items: center !important;
border-radius: 50% !important;
}
Code language: CSS (css)