Quote
Matonor wrote:
This forum is running PHPFusion v7 which will be released in some weeks.
Quote
I love the php-fusion but the only thing that really bugs me is when I type articles in... I have tried to use the tiny editor but it's so small.
if ($settings['tinymce_enabled'] == 1) {
echo "<script language='javascript' type='text/javascript' src='".INCLUDES."jscripts/tiny_mce/tiny_mce.js'></script>
<script type='text/javascript'>
function advanced() {
tinyMCE.init({
mode:'textareas',
theme:'advanced',
width:'[b]100%[/b]',
height:'[b]250[/b]',
language:'".$locale['tinymce']."',
Quote
sveinungs wrote:Quote
I love the php-fusion but the only thing that really bugs me is when I type articles in... I have tried to use the tiny editor but it's so small.
There are several things you can do with tinymce, adding more functions (like fullscreen) is quite easy to do.
One simple modification to make tinymce editor window(s) bigger:
/administration/subheader.phpCode Download sourceif ($settings['tinymce_enabled'] == 1) {
echo "<script language='javascript' type='text/javascript' src='".INCLUDES."jscripts/tiny_mce/tiny_mce.js'></script>
<script type='text/javascript'>
function advanced() {
tinyMCE.init({
mode:'textareas',
theme:'advanced',
width:'[b]100%[/b]',
height:'[b]250[/b]',
language:'".$locale['tinymce']."',
See the text in bold, you can change that to make the window bigger, like:
width:'700',
height:'450',
Quote
sveinungs wrote:
See the text in bold, [..]
Category Forum
Official Core Support - 6Labels
None yet
Statistics
0 participants
Notifications
You are not receiving notifications from this thread.
Related Questions