Hello
I need to set a custom height for a row in a pricing table.
I have so far used this quick CSS
.pricing-table > li {
height: 500px;
}
However I need to isolate this just to a default row.
For example the rows I have are:
Heading
Default (needs to be a set height)
Pricing
Button
Thanks
Hey yourcloudworks,
Could you post a link to the page in question so that we can take a closer look please? Also please try to point out the changes you would like to make there.
Best regards,
Rikard
As you will see the default row in the first columns are shorter. I would like them to be equal in height (without affecting the size of the other rows)
Noting that I have removed the above css.
Hi,
Try this code in the General Styling > Quick CSS field:
.pricing-table li:nth-child(2) {
height: 300px!important;
}
please adjust to suit.
Best regards,
Mike
Perfect
Thank you
Hi yourcloudworks,
Glad we could help :)
If you need further assistance please let us know.
Best regards,
Victoria