Need CSS to reduce font size of table title text

Hi @JesseTron

The CSS for table headers is here…

.table-style-2 table>thead>tr>th {
	font-weight: 600;
	color: #B5B5C3 !important;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	vertical-align: middle;
}

The CSS for table row cells is here…

.table-style-2 table>tbody>tr>td {
	color: #3F4254;
	font-weight: 600;
    font-size: 14px;
}

Adjust as necessary :smile: