Hi,
thanks for your question, and sorry for the trouble.
Do you mean the table name? That would be possible with “Custom CSS”. For example, add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:
.tablepress-table-description {
color: #ff0000;
}
Regards,
Tobias
Hi!
Thanks for the quick reply!
No, I mean the intestation of the column like
Name Country
Pascal Switzerland
Carl Germany
Max France
I need to change the color of Name and Country.
Thanks =)
Hi,
ah, thanks for the clarification. That possible in a very similar way, also compare https://tablepress.org/faq/change-background-color-table-head-row/ :
.tablepress thead th,
.tablepress tfoot th {
color: #ff0000;
}
Regards,
Tobias