Pages: [1] |
|
|
Author |
Topic: How to make the WYSIWYG editor window larger (Read 937 times) |
admin
Forum Administrator

Posts: 1430
SnippetMaster Author
|
You can enlarge the text area by editing the "main.html" file in the
templates folder.
Look for this text: (around line #199 or so)
<iframe name="ieeditor" src="ieeditor/ieeditor.php?language=<?php echo
$language; ?>&BASEURL=/"
width="100%" height="500" style="border: solid gray 1px;"></iframe>
<textarea name="data[page_text][0]" rows="0" cols="0"
style="visibility:hidden;">
<?php print "\n".stripslashes(chop($html[data][page_text][$i]))."\n"; ?
> </textarea>
You can see in the iframe tag where there is a hight/width
specification. You should change this as desired. You can also change
the textarea settings (rows/cols), but I don't think this will make a
difference unless you are not using the WYSIWYG editor.
Cheers!
|
|
|
|
|
Pages: [1]
|
|
|
|