Resize Proportions Of The Backend Editor
If you have a special page requiring a broader textarea in the backend's editor, you can do this:
- Create a page called resizeeditor
- The content of the page resizeeditor is like this
[h:]
<script>
if(top!=self) {
newsize=1000;
editorframe=parent.parent.document.getElementsByName('i2');
editorframe[0].style.width=newsize+30+'px';
parent.parent.i2.document.getElementById('ta1').style.width=newsize+'px';
parent.parent.i2.document.getElementById('ta2').style.width=newsize+'px';
parent.parent.i2.document.getElementById('ta3').style.width=newsize+'px';
}
</script>
[:h] - On the page which shall appear in the broader textarea write this piece of code on its last line: [$$$:resizeeditor]