Change all text color to black

  • jennifer640
    Asked on September 1, 2016 at 9:52 AM
    Also, some of the text in our form is navy and some is black. I changed font color in the Design screen to #000000, but some text is still navy. Can you help me figure out how to change ALL of the text to black?
  • Chriistian Jotform Support
    Replied on September 1, 2016 at 11:29 AM

    I checked your form and I noticed that the label that is still in navy has a CSS code implemented on it. To change these fields' font color to black, then you need to remove those CSS codes.

     

     Change all text color to black Image 1 Screenshot 20

     

    Or you can inject this custom CSS code in your form to override the other CSS code.

    .form-label {

        color: #000000 !important;

    }