Thanks for responding! I do appreciate it. I know this plug-in doesn’t work like regular html tables that you can drag row sizes to fit the text and such, but what I wanted to do was basically center the table, with the text fitting properly in each row, without so much space.
I put this code in for both columns that I have (I do not have it set now so I can’t show the url), trying to make each column 200 px, and it worked pretty well:
.wp-table-reloaded-id-3 .column-1 {
width: 200px!important;
}
.wp-table-reloaded-id-3 .column-2 {
width: 200px!important;
}
Except that column two didn’t size. Column one sized correctly, but column two just stretched on out until the width of my blog page, or at least what I have my body which is 770px.
I used the code you gave and was playing around with it when you responded and was almost about to achieve what I wanted, so I’ll keep working.
Lastly, when building the tables, columns are A, B, and so forth, but when adding in custom code, the columns are identified as 1, 2, etc. Is this the way that it is also listed when defining which row that you’re defining. I know the code is different, but would I reference rows as one, two and on down the line when changing row colors and such.
Sorry for the long response.