[Solved] Wysiwyg for dynamic blocks of content? [closed]

YOu could use divs (styles to make them appear as 3 columns not provided): <div id=”wrapperDIV”> <div id=”col1″>column 1</div> <div id=”col2″>column 2</div> <div id=”col3″>column 3</div> </div> or what i prefer is tables: <table> <tr> <td>col 1</td> <td>col 2</td> <td>col 3</td> </tr> </table> you would create a wysiwyg editor into each column. There are tons of … Read more