How can I change the font colour of the field titles?

  • ACTWildlife
    Asked on August 25, 2015 at 10:20 PM

    For instance, I have named fields with 4 options.  If I go into the Designer and change the font colour the colour changes for the options but not the field title.

    Can you please tell me the solution? 

     

    regards,

    Marg

    Jotform Thread 647764 Screenshot
  • Sammy
    Replied on August 26, 2015 at 5:50 AM

    Kindly use the following CSS in your designer

    #label_8, #label_10, #label_12, #label_14, #label_16, #label_18, #label_20, #label_22 {
        color : blue;
    }

    It targets the titles using their ID since using classes will change every color including the ones on the text boxes,

    Please let us know if you need any clarification