2
sure you can, by making sure that the blocks loop in the row, and not the column.
Let me explain this a bit more. By default, blocks (for instance, the center left blocks) loop in this way:
table
loop this:
tr
td
block
/td
/tr
end loop
/table
This way, each block will get it's own table row, and be put below the previous one.
If you change the loop to this:
table
tr
loop this:
td
block
/td
end loop
/tr
/table
Each block gets it's own table
cell, thus placing it
next to the previous block of the same type.
Hope this helps
Herko