Rounded Corners & Bold Cell Text
-
Hi,
I used the following code found in your support to add rounded corners to a table in TablePress:
.tablepress thead th:first-child {
border-top-left-radius: 10px;
}
.tablepress thead th:last-child {
border-top-right-radius: 10px;
}
.tablepress tbody tr:last-child td:first-child {
border-bottom-left-radius: 10px;
}
.tablepress tbody tr:last-child td:last-child {
border-bottom-right-radius: 10px;
}However, I notice the th background color (blue in my case) is what’s being rounded and the default table border (border 1px solid #ccc) still shows square corners, which you can just barely see.
How can I hide the table border on the very top and bottom row corners? I’ve tried adding some css, but nothing has worked so far.
Also, I want to BOLD some text in several cells. My css code for bolding cell text is not working.
Can you please provide some CSS for both issues that I can use?
Thanks for your help,
Michael
- The topic ‘Rounded Corners & Bold Cell Text’ is closed to new replies.