You need to adjust the stylingof the specific columns.
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:nth-child(odd), td:nth-child(odd) {background-color:yellow;}
/* Styles all odd column names and column cells */
th:nth-child(even), td:nth-child(even) {background-color:green;}
/* Styles all even column names and column cells */
th:nth-child(5), td:nth-child(5) {background-color:red;}
/* Styles the 5th column name and column cells */
th:nth-child(n+6),td:nth-child(n+6) {background-color:blue;}
/* Styles the 6th and all following column names and cells */
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