Re: Table Help

Anonymous
Not applicable

Table Help

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.

2 REPLIES 2
Grégoire_Miche2
Level 10

Re: Table Help

HI Jason,

What is the context? an email? a landing page? an article in the community?

-Greg

Eric_Salamon1
Level 6

Re: Table Help

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>