Page 1 of 1

Some content disappears inside grid

Posted: Wed Jan 18, 2023 2:18 pm
by KaiMartinsen
Hi.

When using my self-made extension which has a table, the content of the table disappears when placed inside a layout grid.

I tried using the same code in the HTML object instead, but I got the same result.

What am I doing wrong?

Image
Image


The HTML of the HTML object:

Code: Select all

<table style="background: #E0FFFF; width: 100%; height: 100%; text-align: center; vertical-align: middle;">
  <tbody><tr>
    <td>
<font size="">🔵</font>
<br>
<font face="Arial Narrow" size=""><b>Tematittel</b></font>
</td>
  </tr>
</tbody></table>
Thank you in advance.

- Kai

Re: Some content disappears inside grid

Posted: Wed Jan 18, 2023 3:00 pm
by crispy68
You need to set a font size in your code. A grid sets this zero (or 1) so there is no height given to the grid.

Re: Some content disappears inside grid

Posted: Wed Jan 18, 2023 3:06 pm
by KaiMartinsen
Crispy, thank you so much! :)

Problem fixed!

- Kai