I'm trying to get started with SilverStripe and trying to understand how best to work with the TinyMCE editor and how best to start adding content.
1. Using SS Version 3.0.5 and I've discovered that the Editor restricts the html that can be entered. This can be customized through a "valid_elements" property, but I am not sure where I would set this. Every version seems to be in a different place.
I added the following line to my _config.php file:
HtmlEditorConfig::get('cms')->setOptions(array('valid_elements' => "* [ * ]"));
But the editor is still stripping my CSS style tags, any idea's where to set this?
2. I would like to layout my pages using a 3 column setup. with Left - Main - Right sections.
If I can get the valid_elements problem sorted out I can use DIV's for each of the columns and float the Left and Right, is this the preferred way of doing it? Or must I use Tables?
I have many pages that I would like to setup in this fashion so is this something that I would build a template for? Is there any Docs or examples anyone can point me to?
Thanks,
David Elyk
www.davidelyk.com