Hi.
I have created an HTML region (Parent)
Inside the parent region, I have 3 HTML sub regions (Children)
All I want is to display them side by side.
When looking at the html source in IE after page loads, it looks like this:
<table>
<tr>
<th>Parent</th>
<td> </td>
</tr>
<tr>
<td>
****************
<table>
<tr>
<th>Child 1</th>
<td> </td>
</tr>
<tr>
<td></td>
</tr>
</table>
<table>
<tr>
<th>Child 2</th>
<td> </td>
</tr>
<tr>
<td></td>
</tr>
</table>
<table>
<tr>
<th>Child 3</th>
<td> </td>
</tr>
<tr>
<td></td>
</tr>
</table>
****************
</td>
</tr>
</table>
There where you see the bunch of ************, I would like to put div tags. I already have css which can place these table next to each. If only I could get a div tag around all three children, then I have a solution. Is there another easier way? Remember the Parent is an HTML regions.
Thanks