I have been trying for the last couple of days to create a top and bottom border of each cell or row. And have found a temp solution, but not an ideal one.
Using display:block; I get my borders although the columns float to the left creating a mess of the table. Your suggestions are much appreciated.
.events .wp-table-reloaded {
font-size: 12px;
}
.events .wp-table-reloaded tr {
background: #f4f4f4;
display: block;
border-top:1px solid #ffffff;
border-bottom:1px solid #d0d0d0;
}
.events .wp-table-reloaded td {
background: transparent;
border: none!important;
padding: 12px 0 12px 18px;
}