In the sample article, I added the html table of the widh 2 table, the left column for images and the right column for description of images.
The problem is that the text description in the right column is under the images, it looks like the images cause the text to break into another line.
This is an example of the code I used:
<table>
<tr>
<td>Image.jpg</td>
<td>Image.jpg description</td>
</tr>
<tr>
<td>Image2.jpg</td>
<td>Image2.jpg description</td>
</tr>
</table>
Here you can see the problem on this page.
source
share