How do I change the colors of a Survey Input Table?

  • Ron_Sweet
    Asked on October 28, 2020 at 3:10 PM
  • Mike
    Replied on October 28, 2020 at 6:05 PM

    In classic layout forms, we can add a custom CSS to the forms in order to style specific elements.

    Here is a basic CSS to change the colors of the Input Table column and row headers:

    .form-matrix-row-headers {
        background: #aadaf0;
        color: #ff3200;
    }
    .form-matrix-column-headers {
        background: #aadaf0;
        color: #ff3200;
    }

    xsd1z Screenshot 10