Product List Table

I got the list to look like i wanted. But now I do not know how to get it to break the list after 4 products, onto a new line, so that more than 4 can be displayed on one page without continuing to go horizontally.

Like this;
- - - -
- - - -

Instead of;

- - - - - - - -

In the productlist code I have written;

Start HTML:

< table width="604" cellspacing="0" cellpadding="0" align="left">

Product HTML:

< td>
< div>$picture1$< /div>
< div>$name$< /div>
< div>< span class="info">$price$< /span>< /div>
< /td>
< td>   < /td>

End HTML:

< /table>

________________________________________________________________
Didnt get the < code> option to work so i put spaces in the beginnings instead.


You have to use the tags to

avdistribution's picture

You have to use the tr /tr tags to start and close a row. This will only give you 1 product per row but there was a thread about how to arrange multiple products across a row. Search in the forums for it and you'll find it.

http://a-vdistribution.com

Yes I know. :/ But I have

Yes I know. :/ But I have seen others use this technique in the wosbee, only I dont know how they got it to break at the right places (after four products).

Gonna go through the forums again then... Dont know what to search for.

The "grouping interval "

avdistribution's picture

The "grouping interval " determines how many products are shown before a break. This thread explains how to change the grouping:
http://wosbee.com/node/441
Here's a test page showing the effect:
http://avdistribution.shop.wosbee.com/PublishedService?pageID=18&freePag...

Hope this helps.

http://a-vdistribution.com

Oh, I missed to put in

Oh, I missed to put in "Sorting HTML : < /TR>< TR>"

Thank you so much!