Quote:
Originally Posted by kimbaob
|
Its very hard to read CSS code from a picture!
Your problem is caused by some very specific CSS being set, you are going to need to be more specific in order to override it.
Code:
table > thead > tr > th, table > tbody > tr > th,
table > tfoot > tr > th, table > thead > tr > td,
table > tbody > tr > td, table > tfoot > tr > td {
/* border: 1px solid #c4c4c4; */
font-size: 12px;
}
table > thead > tr > th, table > tbody > tr > th,
table > tfoot > tr > th, table > thead > tr > td,
table > tbody > tr > td, table > tfoot > tr > td {
padding: 12px;
line-height: 1.42857143;
vertical-align: top;
/* border-top: 1px solid #c4c4c4; */
}
Those are the styles that are the problem. I have commented out the 2 lines that are causing the borders. Just fix this in your custom CSS.