2013-12-12, 02:39 PM
2013-12-12, 02:48 PM
ungrouped templates --> codebuttons (code can be like below)
<script type="text/javascript" src="jscripts/editor.js?ver=1609"></script>
<script type="text/javascript">
<!--
{$editor_language}
var clickableEditor = new messageEditor("{$bind}", {lang: editor_language, rtl: {$lang->settings['rtl']}, theme: "{$theme['editortheme']}"});
if(clickableEditor)
{
clickableEditor.bindSmilieInserter("clickable_smilies");
}
// -->
</script>
2013-12-12, 02:51 PM
Thanks .M. all I want is to add the html code manually into the template instead of using {$codebuttons} because I want to change <textarea style="width: 100%;
2013-12-12, 03:03 PM
you can try using css code like textarea {width: 100% !important;} in global.css
if there is a problem with the editor text area then see also this --> Textarea Overlap
if there is a problem with the editor text area then see also this --> Textarea Overlap
2013-12-12, 03:08 PM
I am trying to make my quick reply form to look like full reply one but quick reply form has already <textarea style="width: 100%; so I have to delete an extra one from {$codebuttons}.