How do I remove row header visibility for specific input tables?

  • lizdavies1992
    Asked on July 3, 2020 at 9:30 PM

    How do I remove row visibility for specific forms?

    I think my code is incorrect:

    #cid_1705.form-matrix-row-headers {
        display : none !important;
    }

    #cid_1705.th:nth-child(1){
        display: none;
    }

    Please can you indicate what I need to change?

  • Girish JotForm Support
    Replied on July 3, 2020 at 9:36 PM

    Hello,

    Could you clarify if you wanted to remove the text in the row headers OR the radio button on the rows OR both?

    15938265740407 4 Screenshot 10

    Also, please let us know for which input table you wanted to implement this.

  • lizdavies1992
    Replied on July 4, 2020 at 3:32 AM

    It's the visibility of the rows. So it only shows the columns with the headers and radio buttons

  • Vanessa_T
    Replied on July 4, 2020 at 4:17 AM

    You can use the CSS below to remove the row headers specifically for the Asset Management input table field.

    #id_1593 th:nth-child(1) { display: none; }

    If you'd like to apply it to another field, simply replace 1593 with the number in the field ID/Name of the other field.

    How-to-Find-Field-IDs-and-Names

    How do I remove row header visibility for specific input tables? Image 10