Archived topic
color the left column table
5 replies · Started by steven on July 28, 2022
Hi there ,
I have several tables in an article each time with only two columns. I just want to color the left column. What css can I use?
Example of an image table :
Thanks you
Hi there,
Any chance you can link us to the page in question?
You can use the private information field:
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
Hi there,
you can do this:
.wp-block-table.first-col-color tr td:first-child {
background-color: #f00;
}
And give the table a CSS class of first-col-color
Thanks you David, it's working.
Glad to hear that!