I am trying to set the column width and center the text for for two specific columns.
If I reference the column by the column letter it sets the width correctly but not the alignment. If I reference the column by the column number it sets the alignment correctly but not the width. I have not been able to figure out how to get the both alignment and width to work in the CSS included below.
.wp-table-reloaded-id-2 .column-F {
width: 100px!important;
text-align:center!important;
}
.wp-table-reloaded-id-2 .column-7 {
text-align:center!important;
width: 100px!important;
}