Thanks Tobias. I might be doing something wrong. I have added the code above to the custom CSS (shown below at the end) and the text with the “entries per page”, “search”, and the text at the footer of the table inc the page numbers are still a grey. Can you look at proposing what to change please. Also, I’d love the active page to show yellow (#DEA800) ??.
/* CSS for all tables /
/ End /
/ CSS for Buzzword Dictionary /
/ This sets the heading row color */
.tablepress-id-2 thead th {
background-color: #DEA800;
color: white;
font-weight: bold;
}
/* This set how the headings change when you hover over */
.tablepress-id-2 thead .sorting_asc,
.tablepress-id-2 thead .sorting_desc,
.tablepress-id-2 thead .sorting:hover {
background-color: #DFC067;
color: #49545C;
font-weight: bold;
}
/* These set the width and font information of each column */
.tablepress-id-2 .column-1 {
width: 15px;
font-weight: normal;
font-size: 14px;
}
.tablepress-id-2 .column-2 {
width: 45px;
font-weight: bold;
font-size: 16px;
}
.tablepress-id-2 .column-3 {
width: 200px;
font-weight: normal;
font-size: 14px;
}
.tablepress-id-2 .column-4 {
width: 200px;
font-weight: normal;
font-size: 14px;
}
.tablepress-id-2 .column-5 {
width: 200px;
font-weight: normal;
font-size: 14px;
}
.tablepress-id-2 .column-6 {
width: 200px;
font-weight: normal;
font-size: 14px;
}
/* This sets the behaviour of odd rows of the table */
.tablepress-id-2 .odd td {
background-color: #141414;
color: white;
}
/* This sets the behaviour of even rows of the table */
.tablepress-id-2 .even td {
background-color: #2A2D30;
color: white;
}
/*This sets how a row behaves when you hover over it */
.tablepress-id-2 .row-hover tr:hover td {
background-color: #DEA800;
color: white;
font-weight: bold;
}
/*This changes the colours for the headers with search etc */
.tablepress-id-2 dt-container {
color: #ffffff;
}
/* End */