How can i remove row headers in the spreadsheet widget

  • afckredieten
    Asked on January 8, 2018 at 8:38 AM

    Hello,

    I already found to rename the columm header fields with CSS, but i'm looking for a way to remove the First cell in each row, which is black/header

    i've tried with row 1 hidden, collumm 0 content hidden, but that doesn't seem to work.

    1515418658tablerows Screenshot 10

    The first collum where the 24 maanden is filled, i want to remove completly, no black fields



  • Ardian_L
    Replied on January 8, 2018 at 10:29 AM

    Please try to use this CSS Code to hide that cell:

    tr:first-child th:first-child {
        background: #fff !important;
        border: 1px solid #fff !important;
    }