Hello
I’ve been trying to add a couple of blank lines below a cell content in order to equalize the height of the table across a row. However, adding <br>, or <p></p> or else does nothing. As a workaround for now, I put two words in two lines and added a “.” in the third line, but I’d rather have better way.
Here you can see the table:
http://test.falconeria.ch/orari/?lang=en
I’m referring specifically to the “Park Hours” row. Is that possible?
Also, there’s a weird black line at the bottom of the first column which doesn’t align to anything. How can I remove that?
Thank you!
Alessandro
Hey wurgi!
I wrapped the Show Hours line in a paragraph like this:
<p style="padding-bottom:23px;">Show Hours</p>
If you could copy that to the rest of the lines and adjust the value 23 to fit your liking it should work better.
Add the following to Quick CSS to get rid of the bottom border:
.avia-pricing-table-container .pricing-table>li:last-child {
border-bottom-width: 0px !important;
}
Best regards,
Rikard
Hello Rikard
Thank you very much for your reply. The bottom padding works great, thank you.
For the Quick CSS fix, is there a way I can apply that only to the first column? Right now, the entire bottom border gets hidden.
Bests,
Alessandro
Hi!
Replace the css code with this:
.avia-pricing-table-container .pricing-table-wrap:first-child .pricing-table>li:last-child {
border-bottom-width: 0px !important;
}
Best regards,
Ismael
Thank you very much Ismael!