What a great upgrade to wp-tables. Fabulous improvement!
I have a couple CSS questions.
1. Is it possible to mark up two or more tables with the same selector? I'll probably have a dozen or more tables and I'd like to style them all universally. I tried these selector options:
.wp-table-reloaded-id-1,2
.wp-table-reloaded-id-1-2
and didn't get the consistency I was looking for.
2. I'm using the CSS on your FAQ for no borders:
.wp-table-reloaded-id-1 {
border: none!important;
border-collapse: collapse!important;
border-spacing: 0px!important;
}
and I'm getting a left border on the first column on even rows. Yes, I used the CSS for odd/even row background colors (mine listed here)
.wp-table-reloaded-id-1 .odd td {
background-color: #f1eab1;
}
.wp-table-reloaded-id-1 .even td {
background-color: #eadf9b;
}
Any ideas why I'd be getting a red left column left border only on even rows?