Hi, i want my search results to show in 2 or 3 columns rather than just 1 column straight down, at the moment my code looks like this:
<Actinic:SEARCH_RESULTS><table border="1" width="100%" cellpadding="0">
<tr>
<td valign="middle" width="114">
<p align="center"><Actinic:XMLTEMPLATE NAME="ImageLine">
<IMG SRC="NETQUOTEVAR:THUMBNAIL" NETQUOTEVAR:THUMBNAILSIZE></Actinic:XMLTEMPLATE></td>
<td valign="middle"> <Actinic:S_LINK/><font face="Tahoma" size="2"><b><Actinic:S_PNAME/></b></font></A><br><font
face="Tahoma" size="2"><Actinic:S_SNAME/>
<Actinic:S_PRICE/></font>
<font face="Tahoma" size="2"><Actinic:S_DESCR/></font><br>
<font face="Tahoma" size="2"><Actinic:S_PROP/></font></td>
</tr>
</table>
</Actinic:SEARCH_RESULTS>
I thought I could put the </Actinic:SEARCH_RESULTS> tag inside my <tr> so each one would have an individual cell but then i realised this would just create loads of cells side by side.
Is there any way i can set this up to show 3 results in columns then jump to the next row, and so on.....
<Actinic:SEARCH_RESULTS><table border="1" width="100%" cellpadding="0">
<tr>
<td valign="middle" width="114">
<p align="center"><Actinic:XMLTEMPLATE NAME="ImageLine">
<IMG SRC="NETQUOTEVAR:THUMBNAIL" NETQUOTEVAR:THUMBNAILSIZE></Actinic:XMLTEMPLATE></td>
<td valign="middle"> <Actinic:S_LINK/><font face="Tahoma" size="2"><b><Actinic:S_PNAME/></b></font></A><br><font
face="Tahoma" size="2"><Actinic:S_SNAME/>
<Actinic:S_PRICE/></font>
<font face="Tahoma" size="2"><Actinic:S_DESCR/></font><br>
<font face="Tahoma" size="2"><Actinic:S_PROP/></font></td>
</tr>
</table>
</Actinic:SEARCH_RESULTS>
I thought I could put the </Actinic:SEARCH_RESULTS> tag inside my <tr> so each one would have an individual cell but then i realised this would just create loads of cells side by side.
Is there any way i can set this up to show 3 results in columns then jump to the next row, and so on.....
Comment