Less white space between lines in all tables
-
I’d like these changes to apply to all tables, not just the one I’m currently working on. I have two sample tables at
https://biblequestions.info/tech-support/I’d like to have less vertical white space in the rows. I found this code to make the data rows closer together (although I don’t know if this is the best solution)
.tablepress tbody td {
padding: 1px;
line-height: normal;
}The rows with data are close together, but it didn’t affect the header or footer. I tried using these for the header and footer, but there was no effect.
.tablepress thead td,
.tablepress tfoot td ,
.tablepress tbody td {
padding: 1px;
line-height: normal;
}In the footer, I reference the books I got the data from, but I wanted this text to be small. To get the print small, I used <font size=”-2″></font> in each cell with data, <br> to break the data where I want it, and #colspan# in the empty cells. As you can see, there’s a huge amount of white space in the cells. Because I’m manually changing the size, I’ll understand if any solution to the header and footer issue may not work in this instance.
The page I need help with: [log in to see the link]
- The topic ‘Less white space between lines in all tables’ is closed to new replies.