Page 1 of 1

3 column rows

PostPosted: Fri Mar 05, 2004 6:48 pm
by Cheryl
Hi,

I've inserted the following tags into my custom page template but I still do
not see 3 column rows of products.

[--LOOP PRODUCTS 3 --]
[--PRODUCT--]
[--END_LOOP PRODUCTS--]

Any suggestions as to what I may be doing wrong?

Thanks,
Cheryl

Re: 3 column rows

PostPosted: Fri Mar 05, 2004 10:44 pm
by Jim
You need to create the td elements that put the product in a cell of the
table.

something like
[--LOOP PRODUCTS 3 --]
<td>
[--PRODUCT--]
</td>
[--END_LOOP PRODUCTS--]


ShopSite will add the <tr> and </tr> at the start and end of each row of
the number of columns you have (3). Your page template will need to
start and end the table around the [-- Loop Products--] section

Jim


Cheryl wrote:

Hi,

I've inserted the following tags into my custom page template but I still do
not see 3 column rows of products.

[--LOOP PRODUCTS 3 --]
[--PRODUCT--]
[--END_LOOP PRODUCTS--]

Any suggestions as to what I may be doing wrong?

Thanks,
Cheryl