Hey, thanks for a great theme!
I have a smaller issue though,
I wanted to make a table and hide the empty cells. But two of the cells are not hiding eventhough they are empty.
Table Options: I chose “pricing table”, “standard” and “hide empty cells”
I made 3 columns:
– Bronze: with 4 cells of content
– Silver: with 5 cells of content
– Gold: with 9 cells of content
Bronze and silver each has one extra cell that is empty eventhough I chose “hide empty cells”
I saw in another thread that the following code was used (I do not know anything about coding):
.pricing-table li.empty-table-cell{
display: none !important;
}
It does hide the two last cells. Problem then is that it also removes the bottom frame line of the last cells in the Bronze and Silver columns.
How can I hide the last two empty cells and also keep the frame around the cells with content?
Best regards
Miki
Hi mastermcc,
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
Hi Rikard,
sure.
Hey!
Please insert the below css into your custom css section:
.pricing-table li.empty-table-cell {
border-left-style: none !important;
border-right-style: none !important;
border-bottom-style: none !important;
}
Regards,
Dake
Thanks! it worked perfectly!