-
Cloyd_DanielleAsked on June 19, 2019 at 2:50 PM
I have picked the template for the submit button that I want, but the text is in white, so its not really showing up. How can I change the color without changing the style of the button?
Thanks!
-
David JotForm Support ManagerReplied on June 19, 2019 at 5:39 PM
It is possible to just change the color of the text of the submit button, please try with this code: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes
.form-submit-button {
color: "color here" !important;
}
Example:
.form-submit-button {
color: darkblue !important;
}
You can even increase the font size:
.form-submit-button {
color: darkblue !important;
font-size: 24px;
}
Result:
Let us know if you need more help, we will be glad to assist you.