How do I join tablee headers?

I want to have a single header across my table but I can’t find an option to join/merge headers.

I want to have:

 <thead> <tr>
<th rowspan="1" colspan="2">Column 1Column 2</th>
</tr>
</thead>

Instead of:
<thead>
    <tr>
        <th>Column 1</th>
        <th>Column 2</th>
    </tr>
</thead>

Never mind. I think I found the complicated way. Delete one cell and edit the options of the other.

Look in the options, I would highly recommend you familiarize yourself with the app a bit, do some tutorials and such before posting. Usually if you add something from the base components of the app, there are options you can use. They are right there at the very top and by seeing your code you should have recognized it had you looked there. No offense meant at all, just that it’s best to look around things, add something and then check your options at the top right and see what’s all there that you can do with it. Play a little bit, you’ll be glad you did. :slight_smile:

1 Like

Delete the additional cells, select the remaining cell and change Options>colspan to 2 (3, 4) or however many columns there are in your table. You may wish to center align the text in the header cell at that point as well.

Thanks all. I had figured it out.

If your cell span over rows the new Custom Options is a perfect tool to align the cell text vertical