Table styling

Splicho

Synapse-Themes.cc Owner
Staff member
Moderator
Collaborate
Registered
Joined
Jan 21, 2022
Messages
828
Points
153

Reputation:

Search for these classes:

CSS:
.bbTable > table > thead > tr > th,
.bbTable > table > tbody > tr > th

For DohThemes, they're located in core_dt_extra.less, but for your theme they might be somewhere else.


If you can't find them, then add that to extra.less, adjust the colors as you want:

CSS:
.bbTable>table>thead>tr>th, .bbTable>table>tbody>tr>th {
    background: #c7c7c7;
    border: 1px solid #940000;
    border-bottom-color: unset;
    border-bottom-width: 2px;
    padding: 6px;
}
 
Top