Hey Jesse,
I have done this on one of my apps.
First, add an additional class to the design of the table on the css tab (you can name this whatever you want but then you will need to change each line on the css code as well):
/*This removes the table css formatting from the table*/
.appt-table button.btn.btn-default.disabled.btn-sm {
display: none;
}
.appt-table .pull-left.form-inline {
float: right !important;
}
.appt-table .table-actions.no-print {
background-color: #fff;
border-left: 0 solid #ddd;
border-right: 0 solid #ddd;
}
.appt-table button.btn.btn-default.btn-sm.t-records-button {
display:none;
}
.appt-table .table-responsive {
border: 0px solid #fff;
}
.appt-table ul.nav.nav-tabs {
border-bottom: 0px solid #fff;
}
.appt-table .table-actions.pad-0 {
border: solid #fff;
}
.appt-table button.btn.btn-primary.btn-sm.m-l-xs.t-refresh-button {
display:none;
}
Let me know if you have any questions.
