Hi,
that CSS is not edited directly in the stylesheet (because you would lose your customizations when upgrading the plugin), but they are edited in the “Custom CSS” textarea on the “Plugin Options” screen.
How to change the color for alternating row colors is explained in the FAQ on my website.
To change the border color, try something like this:
.wp-table-reloaded-id-123 td {
border-color: #ff0000;
}
where 123 is the ID of the table.
Best wishes,
Tobias
Hello Tobias,
Thank you for your answer. However where do I find the custom.css. I see tablesorter.css, datatables.css, plugin.css but no custom.css. Is it possible for you to give the path?
Thanks a lot,
Joop.
Hi,
as I said, the CSS is NOT edited in a file!
“Custom CSS” refers to a textfield, that you can see when you click on “Plugin Options”, when you are in the WP-Table Reloaded admin area.
Best wishes,
Tobias
Thanks Tobias. I found it.
What will the code be if i dont want any bordercolour in any of my tables?
…and another background colour in some coloums?
Hi,
please take a look at the FAQ page at http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/faq/.
There, you will find the code for removing borders, and it should help with getting started to change the background color in the columns.
Regards,
Tobias
.wp-table-reloaded-id-24 .row-12 {
background-color: #d1d3d4 !important;
}
but what if i want this effect on more rows?
Hi,
then just extend the selector part of the code, like this:
.wp-table-reloaded-id-24 .row-12,
.wp-table-reloaded-id-24 .row-15,
.wp-table-reloaded-id-24 .row-17,
.wp-table-reloaded-id-24 .row-25 {
background-color: #d1d3d4!important;
}
Regards,
Tobias