Hi,
this is possible via some CSS code, that you have to enter into the “Custom CSS” textarea on the “Plugin Options” screen of WP-Table Reloaded.
Can you maybe explain what you are trying to achieve? I can then hopefully tell you the strategy for this.
Also, a link to the page with your table would be helpful.
Regards,
Tobias
Hi,
thanks for the details.
Unfortunately, due to the rather unconventional color scheme in that example table, you will need a rather larger portion of CSS code to achieve this.
Basically, you will have to repeat the step of coloring an individual cell for all cells. That single step is described in the answer to the question “How can I highlight certain cells or their content?” in the plugin FAQ at http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/faq/
Here is some CSS code (has to be pasted into the “Custom CSS” textarea on the “Plugin Options” screen of WP-Table Reloaded) that should get you started:
.wp-table-reloaded-id-1 .row-1 .column-1,
.wp-table-reloaded-id-1 .row-1 .column-2,
.wp-table-reloaded-id-1 .row-2 .column-1,
.wp-table-reloaded-id-1 .row-2 .column-2 {
background-color: #ffff00 !important;
}
.wp-table-reloaded-id-1 .row-1 .column-3,
.wp-table-reloaded-id-1 .row-1 .column-4,
.wp-table-reloaded-id-1 .row-2 .column-3,
.wp-table-reloaded-id-1 .row-2 .column-4 {
background-color: #0000ff !important;
}
Basically, you will need one such block for each background color in the table, and then just complete the list of cells.
Regards,
Tobias
Nice it works 🙂
Thanks for your help
Hi,
awesome! 🙂 Great to hear! Thanks for the confirmation.
Best wishes,
Tobias