Insert a small image in cell

Hello,

I would like to insert a small image in a cell (max 120px height) but the row height does not auto-expend. Is there a way to do it ?

Thanks
Yannicl

Hello @ywillener ,

This is not possible out of the box since the height is a fundamental way for the table to make sure that all the rows have the exact same height. On the other hand you can easily change that by adding an extra CSS rule which will look like this:

div[class^='gc-column-text'] {
    height: auto;
}

and your issue would probably be fixed.

Hello Johnny,

Perfect, thanks.