Quote:
Originally Posted by DRJ
Thanks for your help. Would it be easy to modify it so that the Smilie box could appear below the text box?
|
This is what I'm using. Look in your editor_toolbar template (standard and/or wysiwyg) and find this
Code:
<!-- / edit text area -->
</td>
<if condition="$smiliebox"><td class="controlbar">$smiliebox</td></if>
</tr>
</table>
and replace it with
Code:
<!-- / edit text area -->
</td>
</tr>
<if condition="$smiliebox">
<tr valign="top"><td class="controlbar">$smiliebox</td></tr></if>
</tr>
</table>