Actions
Support #21963
opentable formatting problem
Start date:
2025-02-01
Due date:
% Done:
0%
Estimated time:
Deployment actions:
Description
Juwon Jun
cc: Syelle Graves <sgraves@gc.cuny.edu>
writes
I hope this finds you well! We are noticing an issue across our site (https://textbasedtasks.commons.gc.cuny.edu/teaching-manual/) : tables that we create seem to be missing the top line no matter how we format and design the tables. See for example the attached image under II > II.2
Files
Updated by Boone Gorges 2 months ago
- Target version set to Not tracked
The Bravada theme has a bit of CSS that does the following:
.bravada-stripped-table .main td { border-top: 1px solid transparent; }
So it seems to be an intentional design decision by the theme author.
If you want override, the following custom CSS will probably work:
.bravada-stripped-table .main td { border-top: 1px solid #000; }
Actions