Turn off the Select Boxes on every row of table

All,

I took Rob’s CSS one step further and figured out how to hide the column.  Find the id for your table and use this CSS.

Hide Checkbox Column in Table
--------------

    #sk-3nNp7v-102 td:nth-of-type(1) {
   
    display: none;
   
    }

    #sk-3nNp7v-102 th:nth-of-type(1) {
   
    display: none;
   
    }

1 Like