How can I change the color and size of the font in the fields of my jotform?

  • joannpantoja
    Asked on February 23, 2015 at 3:30 PM
    2. How can I change the color in  my fields to yellow and size of font? The "Actor Name" and make drop down menu yellow in color so when I print it comes out yellow.
  • Ben
    Replied on February 23, 2015 at 4:37 PM

    You can see here how to do this: How to Change Font Size on Forms

    Now if you would like to leave the colors and font as you have them, but would like to change them only for the print then you could use this CSS code instead:

    @media print {
      li > label.form-label {
        color: gold !important;
        font-size: 12px !important;
      }}

    It would just make the change for the printing, not for the jotform when you view it.

    You can add it to your jotform by following these steps: Inject Custom CSS Codes

    Do let us know if you have any further questions.