Hi,
thanks for your question, and sorry for the trouble.
This usually works, but in your case, some CSS in your theme is interfering. To work around that, please add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:
.tablepress th,
.tablepress td {
padding: 8px !important;
}
For changing specific text, you could try the approach from https://tablepress.org/faq/highlight-cells-or-content/ and https://tablepress.org/faq/change-font-family-size-color/
Regards,
Tobias
Wow Fantastic. That worked!
Thank you.
I also tried to change the color of the text to navy in the table.
and bold some of my headings and put row borders
Here is what I have in the plugin options right now. I’m doing something wrong.
.tablepress-id-5 {
width: 850px;
margin: 0 auto 1em;
font-size: 15px;
font-family: georgia;
color: #000084;
}
body {
color: #000084;
}
.tablepress th,
.tablepress td {
padding: 8px !important;
}
Oh I just realized you directed me to a link for highlighting text. I will give it a try.
OK So I tried a few things but I am still doing something wrong.
My title “Availabilities” is half shaded on the row. which is weird.
Still not sure how to bold and make a little bigger my titles Availabilites, Office, and Industrial
and make all the text #000084
Here is what is in the plugin options now.
.tablepress-id-5 {
width: 850px;
margin: 0 auto 1em;
font-size: 15px;
font-family: georgia;
color: #000084;
}
.tablepress th,
.tablepress td {
padding: 8px !important;
}
.tablepress-id-5 .row-2 {
background-color: #000084;
}
I look forward to your response.
Hi,
please extend the code
.tablepress th,
.tablepress td {
padding: 8px !important;
}
to
.tablepress th,
.tablepress td {
padding: 8px !important;
opacity: 1;
}
That should fix the problem with the first row.
To change the text color, change
.tablepress-id-5 {
width: 850px;
margin: 0 auto 1em;
font-size: 15px;
font-family: georgia;
color: #000084;
}
to
.tablepress-id-5 {
width: 850px;
margin: 0 auto 1em;
}
.tablepress-id-5 td {
font-size: 15px;
font-family: georgia;
color: #000084;
}
To make some words bold, just change the text like
<strong>Industrial</strong>
Regards,
Tobias
Thank you so much for your help.
My table looks fantastic. Take a look!
Your support is wonderful! Thank for helping me quickly.
I am going to make a donation right now.
Well Deserved!
Hi,
no problem, you are very welcome! 🙂 Good to hear that this helped!
And thanks for the donation, I really appreciate it!
Best wishes,
Tobias
P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!
I rated TablePress 5 stars.
Hi,
thanks, I really appreciate that! 🙂
Best wishes,
Tobias