Need instructions for using a table

I tried to create a simple horizontal 2-cell table. I got the table to show up, then tried to insert a product image in each cell by clicking first on cell 1, adding the HTML code, then clicking on cell 2, inserting the next HTML code. I assumed it would work the same as in Excel or MS Word, but apparently not.

When opening the HTML window, I saw the table code, dropped down a line and entered the HTML, but I guess that’s not how it’s done.

Help?

Colorwash's Home

After you click to create the table code, look at the post HTML and you’ll see this:

<table border="1" width="100%">
<tbody>
<tr>
<td width="50%">&nbsp;</td>
<td width="50%">&nbsp;</td>
</tr>
</tbody>
</table>

Replace the   in the above code with the code you copied from the product page.  Each <td> </td>is a cell, all cell content goes in between those tags.

1 Like

Thank you so much!

Colorwash's Home

what @ColsCreations  said, plus screengrabs from this How to create and populate an HTML table with prod… - Zazzle post.