Spreadsheet Widget. Can I change/edit the name of the columns? Renaming the A,B and C.

  • Mike_Graf
    Asked on June 1, 2017 at 10:24 AM
  • liyam
    Replied on June 1, 2017 at 11:41 AM

    It is possible to replace the text of column headers on the Spreadsheet widget using CSS

    Here is an example of replacing the text of the A column header:

    #col_A {
       text-indent: -9999px;
       line-height: 0;
    }

    #col_A:after {
      content: 'whatever it is you want to add';
      text-indent: 0;
      display: block;
     line-height: initial;
    }

    Saving this CSS inside your widget will show this:

    Spreadsheet Widget Screenshot 20

    Feel free to let us know if you have questions or if you need assistance.

    Thanks.