Hi, I have a similar question to the first one in this thread.
I want to have the text centered in all the cells except for the first column, where I want them to be left-aligned.
I've tried every variation I can think of, but no matter what I do, the whole table does one or the other. I can't get Column A to behave differently than the other columns. Here is what I have currently:
.wp-table-reloaded td {
font-family: Arial, Helvetica, Sans-serif;
font-size: 12px;
color: #000000;
text-align:center;
}
.wp-table-reloaded .column-A td {
text-align:left;
}
I've also tried changing the columns IDs to numbers since that is what is shown in your documentation. I've tried taking the text-align out of the main td css as above and doing a separate css setting for Column A with left align and another one for Columns B-H with center align. I've tried doing it with and without the td, and also th. And I think 2 or 3 other things I can't remember anymore.
What am I doing wrong?