Removing unwanted table cell borders with CSS
You need to add this to your CSS:
table { border-collapse:collapse }
add some css:
td, th {
border:none;
}
to remove the border , juste using css like this :
td {
border-style : hidden!important;
}