I’m creating two websites that have the same style. In website 1, a table is used that has 5 columns and 1 row. It looks great – each cell has one photo and text that are correctly surrounded by a border line. In website 2, a table is used that has 2 columns (one is empty, but if it is deleted, multiple error columns are added by the theme on save) and 1 row. It doesn’t look the same as in website 1 – instead the outline cuts off the photo. How can this be fixed?
Hi!
That problem is happening because the image is being floated to the left, therefore losing its height.
Try adding this code to the Quick CSS:
.first-table-item {
min-height: 90px;
}
Best regards,
Josue
Perfect, thanks! :)