Hello @bakrona,
Thanks for writing to us.
I checked your given page URL, unfortunately, I can’t find any button with the class name “ebd_link”. It seems that you are talking about the “Form” submit button.
Ti change the button background colour please add this custom CSS under X–>Theme Option -->CSS
input.wpcf7-form-control.wpcf7-submit {
background: #ffffff;
border-color: #ffffff;
color: #000000;
}
To change the background colour on the button hover.
input.wpcf7-form-control.wpcf7-submit:hover {
color: #fff;
border-color: #dd1002;
background-color: #d92b2f;
}
Please feel free to change the colour code of “background” and “color” attributes as per your design.
The purpose of providing the custom CSS to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.
Hope it helps you.
Thanks