Ok, this hasn't been posted in for a while. I used a combo of this and
Ev!L ErN!E's mod.
I had an issue with the centering of the image, the fact that the increase/decrease box didn't work, and didn't like the image being shown in all input boxes. Here's what I did and this works great for me on 3.8.4 with all the major browsers.
3 template edits.
In
Editor Templates > editor_toolbar_off
find:
Code:
<textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="
insert directly after the style="
Code:
background:#FFFFFF url(images/image.png); background-repeat: no-repeat; background-position: center center;
(note there is a space at the end. You want a space right after - center; )
Things in green should be changed to your forum stuff.
In
Editor Templates > editor_toolbar_on
find:
Code:
<textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="
insert directly after the style="
Code:
background:#FFFFFF url(images/image.png); background-repeat: no-repeat; background-position: center center;
(note there is a space at the end. You want a space right after - center; )
Things in green should be changed to your forum stuff.
In
Show Thread Templates > showthread_quickreply
find:
Code:
<textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="
insert directly after the style="
Code:
background:#FFFFFF url(images/image.png); background-repeat: no-repeat; background-position: center center;
(note there is a space at the end. You want a space right after - center; )
(also note, this needs to be done TWICE in this template. There are two instances that need to be modified so make sure you do both. )
Things in green should be changed to your forum stuff.
That's it. Works perfect for me. Hope this helps some you struggling to get it to work, gripes about the display in all input boxes, or issues with the text box increase/decrease buttons.