I can’t get column 6 to widen to its CSS setting which is set to the same px width setting as columns 3-5 (75px).
http://www.wptest2.agilebts.com/zoho-implementation-plans/
Here is the CSS section…
.tablepress-id-6 .column-3 {
width: 75px;
text-align: center;
}
.tablepress-id-6 .column-4 {
width: 75px;
text-align: center;
}
.tablepress-id-6 .column-5 {
width: 75px;
text-align: center;
}
.tablepress-id-6 .column-6 {
width: 75px;
text-align: center;
}
My theme is at full page width and I also tried the CSS to reduce the table size but the uneven column spacing persists:
.tablepress-id-6 {
width: 90%;
margin: 0 auto 1em;
}
What am I overlooking?