Hi all, I have created a directory of just subcatagories.
Instead of the long list of subcatagories being listen in a single column, i am trying to get it into a 3 column table.
Here is how far i managed to get to:
<[!-- List of child categories - Start --/]>
<table border="1">
<[FOR_EACH name="templateData.getSubCategories(true)" id="category"]>
<tr>
<td BGCOLOR="#ffff00"> <b><a href="<[ECHO text="templateData.getPageFile(category)"/]>"><[ECHO text="category.name"/]></a> (<[ECHO text="category.getPartnersCountWithSubcategories(project.partners, false)"/]>)</b></td>
<td BGCOLOR="#ffff00"> <b><a href="<[ECHO text="templateData.getPageFile(category)"/]>"><[ECHO text="category.name"/]></a> (<[ECHO text="category.getPartnersCountWithSubcategories(project.partners, false)"/]>)</b></td>
<td BGCOLOR="#ffff00"> <b><a href="<[ECHO text="templateData.getPageFile(category)"/]>"><[ECHO text="category.name"/]></a> (<[ECHO text="category.getPartnersCountWithSubcategories(project.partners, false)"/]>)</b></td>
</tr>
<[/FOR_EACH]>
</table>
<[!-- List of child categories - End --/]>The problem with that is that it created the 3 column table fine but it repeats the same catagory 3 times in each cell. Can someone have a look and see if they can modify it so i have a unique catagory in each cell?

I would really appreciate any help.
Thanks.