How to change color of the text on the submit button

  • Cloyd_Danielle
    Asked 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!

    Jotform Thread 1863033 Screenshot
  • David JotForm Support Manager
    Replied 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:

    1560980314result 004 Screenshot 10

    Let us know if you need more help, we will be glad to assist you.