Is there an example of a top down / left right column setup in entity.grid.xml
Right now, for 2 columns, it's displaying a left right / top down structure using the code below.
Could someone let me know how to change this (Which might as well be Greek) to display it top down / left right.
Code:
<xsl:if test="position() mod $SubcatGridCols = 1 and $SubcatGridCols > 1">
<tr>
<xsl:for-each select=". | following-sibling::*[position() < $SubcatGridCols]">
<xsl:call-template name="ProductCell"></xsl:call-template>
</xsl:for-each>
<xsl:if test="ceiling(position() div number($SubcatGridCols)) = $rows and $delta > 0">
<xsl:call-template name="FillerCells">
<xsl:with-param name="cellCount" select="$delta" />
</xsl:call-template>
</xsl:if>
</tr>
</xsl:if>
Thanks for the ideas.