Use case

You need to adjust fonts (size, style, family) of the table.

Solution

  1. Switch the page to the edit mode.

  2. Insert the Table Transformer macro and paste the table or the macros outputting tables within the macro body.

  3. Select the macro and click Edit.

  4. In the Stylesheet tab enter any of the following CSS:

    th {font: 15px Monaco, Monospace;} /* Adjust the font in the header row */
    
    tr:nth-child(1) {font: 15px Papyrus, Fantasy;} /* Adjust the font in the first row */
    
    tr:nth-child(2) {font: 15px Georgia, Serif;} /* Adjust the font in the second row */
    
    tr:nth-child(3) {font: 20px Helvetica, Sans-serif;} /* Adjust the font in the third row */
    
    tr:nth-child(4) {font: 25px Lucida Handwriting, Cursive;} /*Adjust the font in the fourth row */
    CSS
  5. Save the macro and the page.