This topic has 2 replies, 2 voices, and was last updated 8 years ago ago by Olga Barlow
I need to change the text color of the Submit button on a form in my footer. This is not working when placed in Custom CSS:
.button, .btn, input[type="submit"] {
color: #ffffff;
}
What am I missing?
Hello,
I don’t see your code in custom CSS. Please, add the following code to change the color
.footer .widget_mc4wp_form_widget input[type="submit"] {
background-color: your_color;
border: your_color;
}
.footer .widget_mc4wp_form_widget input[type="submit"]:hover {
background-color: your_color;
border: your_color;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up