
...but, I want to have it fully open by default...like this:

To do this, go ACP>Look & Feel>your_skin>Topic View>topicViewTemplate
Find:
Quote
//<![CDATA[
if( $('fast-reply_textarea') ){
$('fast-reply_textarea').addClassName('unloaded_editor').setStyle('height: 70px');
$('fast-reply_textarea').value = "{$this->lang->words['editor_unloaded_atm']}";
}
if( $('fast-reply_toolbar_1') ){
$('fast-reply_toolbar_1').hide();
}
if( $('fast-reply_toolbar_2') ){
$('fast-reply_toolbar_2').hide();
if( $('fast-reply_textarea') ){
$('fast-reply_textarea').addClassName('unloaded_editor').setStyle('height: 70px');
$('fast-reply_textarea').value = "{$this->lang->words['editor_unloaded_atm']}";
}
if( $('fast-reply_toolbar_1') ){
$('fast-reply_toolbar_1').hide();
}
if( $('fast-reply_toolbar_2') ){
$('fast-reply_toolbar_2').hide();
Change hide to show.
If you also want text area to be open in full height, change 70px to 250px
...thanks to Michael tip: http://community.inv...7















