user
@demo
Setting up custom CSS styles in a leaderboard
What are the names of the classes that can be referenced in the custom CSS code for a leaderboard?
reply
Reply
user
@support
You can inspect all CSS classes by using your browser developer tools. Here are some of the classes used:

.google-visualization-table-table - the entire table
.headerRow - the row in the header of the table
.google-visualization-table-th - a header cell
.tableRow - a data row
.google-visualization-table-td - a cell in the data row

Note: to override system settings, you will most likely need to use the "!important" keyword in your CSS. If your CSS is not working, adding the "!important" keyword should be the first troubleshooting step.
reply
Reply