Hi all,
I'm attempting to use a layout that will give two fragment products alongside each other. I've changed the width so they fit, but when using the below code, I get the same product on the same line instead of the next product. eg.,
product A | product A
product B | product B
product C | product C
product D | product D
Instead of:
product A | product B
product C | product D
The code I'm using:
<body>
<table width="480" border="0">
<tr>
<td>
<!-- Product 1 -->
<actinic:block if="%3cactinic%3avariable%20name%3d%22FragmentAnchor%22%20%2f%3e%20!=%20%22%22">
<a name="<actinic:variable name="FragmentAnchor" />"></a>
</actinic:block>
<table width="48%" cellspacing="0" cellpadding="10" border="0">
<tr>
<td width="25%" valign="top" align="center">
<actinic:variable name="FragmentImage" />
</td>
<td align="left" width="75%" valign="top">
<actinic:variable Name="FragmentText"/>
</td>
</tr>
</table>
</td>
<td>
<!-- Product 2 -->
<actinic:block if="%3cactinic%3avariable%20name%3d%22FragmentAnchor%22%20%2f%3e%20!=%20%22%22">
<a name="<actinic:variable name="FragmentAnchor" />"></a>
</actinic:block>
<table width="48%" cellspacing="0" cellpadding="10" border="0">
<tr>
<td width="25%" valign="top" align="center">
<actinic:variable name="FragmentImage" />
</td>
<td align="left" width="75%" valign="top">
<actinic:variable Name="FragmentText"/>
</td>
</tr>
</table>
</td>
</tr>
</table>
Anyone any idea how I can fix this?
Thanks all,
Simon
I'm attempting to use a layout that will give two fragment products alongside each other. I've changed the width so they fit, but when using the below code, I get the same product on the same line instead of the next product. eg.,
product A | product A
product B | product B
product C | product C
product D | product D
Instead of:
product A | product B
product C | product D
The code I'm using:
<body>
<table width="480" border="0">
<tr>
<td>
<!-- Product 1 -->
<actinic:block if="%3cactinic%3avariable%20name%3d%22FragmentAnchor%22%20%2f%3e%20!=%20%22%22">
<a name="<actinic:variable name="FragmentAnchor" />"></a>
</actinic:block>
<table width="48%" cellspacing="0" cellpadding="10" border="0">
<tr>
<td width="25%" valign="top" align="center">
<actinic:variable name="FragmentImage" />
</td>
<td align="left" width="75%" valign="top">
<actinic:variable Name="FragmentText"/>
</td>
</tr>
</table>
</td>
<td>
<!-- Product 2 -->
<actinic:block if="%3cactinic%3avariable%20name%3d%22FragmentAnchor%22%20%2f%3e%20!=%20%22%22">
<a name="<actinic:variable name="FragmentAnchor" />"></a>
</actinic:block>
<table width="48%" cellspacing="0" cellpadding="10" border="0">
<tr>
<td width="25%" valign="top" align="center">
<actinic:variable name="FragmentImage" />
</td>
<td align="left" width="75%" valign="top">
<actinic:variable Name="FragmentText"/>
</td>
</tr>
</table>
</td>
</tr>
</table>
Anyone any idea how I can fix this?
Thanks all,
Simon
Comment