CSS problem
-
I have a problem with css, the font color in the tables is not changing. It’s still black even though I added the css code:
.tablepress-id-N tbody td {
font-family: Tahoma;
font-size: 14px;
font-weight: bold;
color: #cfad66;
}This happened after plugin update (I don’t know which version exactly) Before the css for the font was working.
It seems that the table css in wordpress is overriding the font color from the plugin.?
Below is the entire css code added to the plugin:
.tablepress thead th,
.tablepress tfoot th {
background-color: #d08000;
} .tablepress tr,
.tablepress tbody td,
.tablepress thead th,
.tablepress tfoot th {
text-align: center;
vertical-align: middle;
} .tablepress thead .sorting_asc,
.tablepress thead .sorting_desc,
.tablepress thead .sorting:hover {
background-color: #44341c;
} .tablepress .odd td {
background-color: #44341c;
} .tablepress .even td {
background-color: #44341c;
} .tablepress .row-hover tr:hover td {
background-color: #cfad66;
} .tablepress-id-N tbody td {
font-family: Tahoma;
font-size: 14px;
font-weight: bold;
color: #cfad66;
} .tablepress tr,
.tablepress tbody td,
.tablepress thead th,
.tablepress tfoot th {
border-color: #d08000;
}
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘CSS problem’ is closed to new replies.