[HINT] Remove bold in the table header
-
I have a custom table header background colour (a dark grey) and text colour (white). Maybe it’s my font, but anyway the header texts get slightly blurred, because they are in bold. To get rid off that blur I decided to have normal font weight. So I added in the settings a custom table class,
my-table-class
, which I had defined as.my-table-class { font-weight: normal; }
but this didn’t do the trick. It turned out, that there is no built-in setting for the table header, but you have to override the built-in definition by:
.easy-table th { font-weight: normal; }
- The topic ‘[HINT] Remove bold in the table header’ is closed to new replies.