Hey,
I am looking to write copy and have a table directly next to the copy. When I have inserted a table into my paragraph, the table always sits under the copy. My question is how do I have the table to the right of my copy.
HI Jason,
What is the context? an email? a landing page? an article in the community?
-Greg
Jason,
If you are trying to code it out so that a table is next to text, the way it is usually done in emails, (and webpages if you have limited html/CSS experience) is to have the initial code in a table cell and the other table next to it... For example:
<table>
<tr>
<td>
text
</td>
<td>
<table>
<tr>
<td>
text 2
</td>
<td>
text 3
</td>
</tr>
<tr>
<td colspan=2>
text4
</td>
</tr>
</table>
</td>
</tr>
</table>