How do I change color of input table itself and the font color?

  • deannat1967
    Asked on August 22, 2019 at 6:21 PM

    How do I change the color of input table itself and the font color in the table?

  • Girish JotForm Support
    Replied on August 22, 2019 at 7:24 PM

    You can achieve this using CSS codes.

    I've provided a sample code below, which you can use in your form. You may change the color according to your convenience or let us know what color you want to use and we can assist you.

    .form-matrix-values {

        background : #808080 !important;

    }

    .form-matrix-column-headers {

        background : #808080 !important;

        /*background color*/

        color : white !important;

        /*font color*/;

    }

    .form-matrix-row-headers {

        background : #808080 !important;

        color : white !important;

    }

    Related Guide: How-to-Inject-Custom-CSS-Codes