Hi,
Great plugin. And I sense a lot a passion – and patience – on the part of Tobias.
I’ve spent the afternoon trying to solve a problem deleting the cell borders.
Inserting:
.wp-table-reloaded-id-N {
border: none!important;
border-collapse: collapse!important;
border-spacing: 0px!important;
}
… as per FAQ left me with horizontal lines still in place. I tried many permutations: Making my shortcode [table id=3 cellspacing=”0″ /], adding td to the ‘table-reloaded’ line, changing the border line to color: 1px solid #XXXXXX, disabling other plugins, etc.
By accident, I solved it. By INSERTING THE ‘BORDER’ CSS TWICE! I know this can’t be right, but it works. My entire custom CSS now looks like this:
.wp-table-reloaded .column-1 {
width: 150px;
}
.wp-table-reloaded .column-2 {
width: 400px;
}
.wp-table-reloaded td {
font-family: Arial, Helvetica, Sans-serif;
font-size: 12px;
color: #7372AB;
border: none!important;
border-collapse: collapse!important;
border-spacing: 0px!important;
}
.wp-table-reloaded .row-hover tr:hover td {
background-color: #EFEFEF;
}
.wp-table-reloaded {
border: none!important;
border-collapse: collapse!important;
border-spacing: 0px!important;
}
If I delete either of the ‘border’ sections, I revert to horizontal lines. Just wondered if this makes sense to anyone – it’s driven me nuts. I’m afraid I can’t point you to a page because I’m working in MAMP (could this be a cause? Surely not).
Thanks …