I’d like to change the submit button font color on the following Gravity Form to Black:
https://juneofficial.com/audition-form/
Hi there,
Please add this code in the custom CSS:
.gform_wrapper .gform_footer a.gform_save_link {
color: #000;
}
Hope this helps.
Hi!
Thanks for your help. Unfortunately, that did not do it?
Any other ideas?
JD
Hi JD,
I checked and it seems to be working.
Maybe you want to change the background color instead of text color?
You can try this code
.gform_wrapper .gform_footer a.gform_save_link {
background-color: red;
color: #000;
padding: 10px;
}
Hope that helps.
Hi Paul,
Sorry, yes-- the Save and continue works, but the submit button (which is white per the theme) is not visible.
Thanks,
JD
Hello JD,
Please try adding following CSS to change Submit button font color:
.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit] {color: #000; text-transform: initial;}
Thanks.
That worked for the text itself…what about the button outline and background color? How can I control those?
Thanks!
Hello @jdfrizzell,
You can use following CSS:
.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit] {border-color: #949393; background-color: #ddd;}
Thanks.