Hi @iborohist,
Thanks for reaching out!
Inspecting the submit button on https://erdiburn.org/contact-2/, I could see the issue is because you added custom CSS which removed the border-color, color, and background-color from that button.
To solve the issue, the best action would be to remove that custom CSS code.
But if you cannot locate that code, you can try with a new CSS snippet. For this, I would recommend taking a look at our guide about customizing the Submit button. Here’s a CSS snippet that may work for you:
.wpforms-form input[type=submit],
.wpforms-form button[type=submit] {
background-color: #eee !important; /* Grey background */
border: 1px solid #ddd !important; /* Dark grey border */
color: #333 !important; /* Black text color */
font-size: 1em !important; /* Size of text */
padding: 15px 45px !important; /* Distance between text and border */
}
.wpforms-form input[type=submit]:hover,
.wpforms-form input[type=submit]:active,
.wpforms-form button[type=submit]:hover,
.wpforms-form button[type=submit]:active,
.wpforms-form .wpforms-page-button:hover,
.wpforms-form .wpforms-page-button:active {
background-color: #ff0000 !important; /* Darker grey background */
border: 1px solid #ccc !important; /* Lighter grey border */
}
For your reference, I created the following screencast showing the issue, and fixing it with the CSS snippet above: https://a.supportally.com/v/PERS2t.
And in case it helps, here’s a tutorial on how to add custom CSS like this to your site.
Hope this helps!