Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

[HINT] Remove bold in the table header

$
0
0

Replies: 0

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;
}

Viewing all articles
Browse latest Browse all 59525

Trending Articles