Hey,
I'm working with a CMS that parses variables into content using placeholders, e.g.
<td>
[[TITLE]]
<br />
[[DESCRIPTION]]
</td>
The problem is that this will make one long table row. Because of the way the code is written, I can't get it to insert a <tr>
after every few columns. Is there any way to wrap the rows (even using DIVs to emulate tables)?
Even any jquery/mootools/prototype features that could be adapted to do this?