Tagged: row height
Hi, I browsed the forum but could not find how to adjust one row to a minimum height:
I’ve put this code in the quick CSS for the minimum height overall for this table (I have several on the website)
.page-id-4368 .pricing-table>li { min-height: 55px; }
but I’d like to adjust the height of one row in particular, which has much more text, without affecting the other rows.
http://lifeterapias.com.br/tarifas/pacotes-e-ofertas/
Thanks.
Hi ax2201!
Can u give me an example of a row, inside your web site?
Best regards,
Basilis
Hi Basilis,
http://lifeterapias.com.br/tarifas/pacotes-e-ofertas/, it is row number 6, where the amount of text is different from one row to another.
Thanks.
Hi!
Drag a codeblock element to your page and add this inside.
<style type = 'text/css'>
.pricing-table > li:nth-child(8) {
height: 360px !important;
}
</style>
Cheers!
Elliott
Works perfectly, thanks.