Johnk
|
| Posted: 03/15/2005, 6:08 AM |
|
i have a grid which gives me the result in rows. if i have 600 results i get 600 rows.
each row has about 20 labels and one picture.
i want to have the result in 6 columns and 100 rows.
i saw another topic and i did a DIV element but because i have a picture i had no result.
now i am in the code below. I get one row only but the width isnt fixed. Any ideas?
<DIV width=600px>
<!-- BEGIN Row -->
<table width="100px" align=left>
<tr><td>
<!-- BEGIN Image filename_resize_image --><img class="studioInput" src="../img/{filename_resize_image}">
<!-- END Image filename_resize_image --><br>
<strong>{f_3code}<br> {Label6} {price6} {Label49}<br>
</td></tr></table>
<!-- END Row -->
</DIV>
|
|
|
 |
Michael Mikkelsen
|
| Posted: 08/29/2005, 9:31 AM |
|
Move your <!--BEGIN Row --> to after the <tr> tag. Move your <!--END Row --> to before your </tr> tag. Put </tr><tr> in a label before your </td> and only display it every 6th time.
|
|
|
 |
|