How to change letter color/font in a Matrix Table

  • JIPSD3
    Asked on January 1, 2016 at 10:52 AM

    Is there a way to change the color and or font of letters in a check box column?

  • jonathan
    Replied on January 1, 2016 at 4:00 PM

    If I understand correctly, you were referring to the font of the Matrix table column instead.

    You can style it using custom injected CSS code.

    Example:

     

    .form-matrix-column-headers {

        border: 1px solid #e60d00;

        color: #e60d00 !important;

        font-size: 18px !important;

    }

     

    The example css code will change the font color to red and increase font-size to 18px.

    How to change letter color/font in a Matrix Table Image 1 Screenshot 20

     

    Hope this help. Please let us know if you need further assistance.