You need to adjust the stylingof the specific rows.
Solution
Switch the page to the edit mode.
Insert the Table Transformer macro and paste the table or the macros outputting tables within the macro body.
Select the macro and click Edit.
In the Stylesheet tab enter any of the following CSS:
th {font: 15px Verdana;} /* Styles the header row */
tr:nth-child(odd) {background-color:yellow;} /* Styles all odd rows */
tr:nth-child(even) {background-color:red;} /* Styles all even rows */
tr:nth-child(5) {background-color:blue;} /* Styles the 5th row*/
tr:nth-child(n+6) {background-color:green;} /* Styles the 6th and all following rows */
CSS
Savethe macro and the page.
More examples involving the :nth-child pseudo-class are available in the following article.
Cookie Notice
This website uses cookies for analytics, personalization and advertising. By continuing to browse, you agree to our use of cookies. Learn more