How do I remove the unwanted spacing/border between td's ?
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2F9kHPTXl.png&hash=e75696ddecd597fd99cad5e09da5c78e038239b2)
Cannot find it within the CSS doc
It depends on the theme.
Most of the current browsers have tools to inspect the html of the page and find out from where styles come from. ;) (Right click and "inspect element" or similar.)
Search in index.css:
table
{
empty-cells: show;
}
Replace with:
table
{
border-collapse: separate;
border-spacing: 0px;
empty-cells: show;
}
For MessageIndex you may search these and remove the borders (if they have)
.table_frame .table_list td.icon, .table_frame .table_list td.info, .table_frame .table_list td.stats
table.table_grid td
Regards
Cheers Mate