Hi,
thanks for your question and sorry for the trouble!
Most likely, your theme is adding own CSS code to the page, that overwrites this. To find out more, I’d need to take a look at the page with the table. Could you therefore please post a link? Thanks!
Regards,
Tobias
Here is,
http://isabelrico.es/prueba2/
Thanx for your quick reply.
Hi,
thanks for the link.
To change the link color, you can use “Custom CSS” like
.tablepress-id-1 a,
.tablepress-id-3 a {
color: #00ff00;
}
Regards,
Tobias
Great, works fine. But, just another question, this code applies to the hole table but is possible to apply it just to one cell, row or column?
Hi,
good to hear that this works!
Yes, you can do that, too:
One row:
.tablepress-id-3 .row-3 a {
color: #00ff00;
}
One column:
.tablepress-id-3 .column-3 a {
color: #00ff00;
}
One cell:
.tablepress-id-3 .row-3 .column-2 a {
color: #00ff00;
}
Regards,
Tobias
Awesome, it works prefectly.
Thank you very much.
Hi,
no problem, you are very welcome! 🙂
Good to hear that this helps!
Best wishes,
Tobias