Hi,
thanks for your post, and sorry for the trouble.
For this, you can use similar code as for changing the background color (see http://tablepress.org/faq/change-background-color-table-head-row/ ). You will just have to use the color property, like
.tablepress thead th,
.tablepress tfoot th {
color: #ff0000;
}
Regards,
Tobias
Hi
I have a question ? I would like to change color of text in header row .
What can i do ?
Tks and Best Regards.
Hi,
thanks for your question, and sorry for the trouble.
That’s exactly what I answered above 🙂 Just try that code in the “Custom CSS” textarea on the “Plugin Options” screen of TablePress.
If it doesn’t work, add the !important keyword, like
color: #ff0000 !important;
to the code.
Regards,
Tobias
Hi Tobias
Tks very much. It’s work.
I have put 2 code to this:
.tablepress thead th,
.tablepress tfoot th {
background-color: #20CBBC;
}
.tablepress thead th,
.tablepress tfoot th {
color: #ffffff !important;
}
Then i have a nice table .
Tks again
Hi,
yes, that should fix both the background color and the text color. If you want, you can combine that into one piece of code:
.tablepress thead th,
.tablepress tfoot th {
background-color: #20CBBC;
color: #ffffff !important;
}
Best wishes,
Tobias
P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!