Hi,
thanks for your post, and sorry for the trouble.
Which rows exactly are you refering to here? Can you give me an example? The blocks that are the same color are created with different values for the rowspan which is why those blocks differ in height.
Regards,
Tobias
Thank you for your quick response.
Specifically the row that has each hour (6am, 7am, etc).
I do have cells that are #rowspan# but it doesn’t seem to impact the rows they span, the only cells that seem to be a different height are the ones that start the row with the hr.
I figured it out – it’s because the text in those fields do not span across any other field. I added the text “test” – you’ll see when it’s highlighted it is “thicker” than the fields without text.
Is there anything I can do to stop that from happening?
If you look at the “Phoenix Fit” blocks on Saturday, they span the same amount of “time” – 3 rows, but because of the text, the appear to be different…
Hi,
ah, I see what you mean. You refering to the difference between the rows that have some text in them and those that are completely empty.
It is expected that the empty rows are smaller, because they will only be as high as their inner padding, while those that have text will get the text height additionally.
To change this, you could either add text to all rows (e.g. an invisible space in the first column, by adding to each cell there), or by setting the height manually using CSS. For example, you could add
.tablepress-id-1 td {
height: 45px;
}
to the “Custom CSS” textarea on the “Plugin Options” screen.
Regards,
Tobias