Just simply trying to change the highlight color for odd rows. This is what I've inserted into the "Custom CSS" field, but hasn't worked:
.wp-table-reloaded .odd {background-color: #000;}
Not sure why it's not working. Any suggestions?
Just simply trying to change the highlight color for odd rows. This is what I've inserted into the "Custom CSS" field, but hasn't worked:
.wp-table-reloaded .odd {background-color: #000;}
Not sure why it's not working. Any suggestions?
Hi,
you need to include the cell (i.e. the <td> in the selector).
Can you try again with
.wp-table-reloaded .odd td {background-color: #000;}
If that does not work, can you provide the URL to the page with your table?
Thanks!
Best wishes,
Tobias
That worked. Thanks for the help.
This topic has been closed to new replies.