Quote:
Originally Posted by abramelin
ohh yes i was looking for that! thanks very much. one more question. how can we do this for quick reply box?
|
If that didn't work.........
Try this:
Along with the changes above, do these edits to showthread_quickreply
Find:
Code:
<iframe id="htmlbox" style="width:600px; height:100px" tabindex="1"></iframe>
Change to:
Code:
<iframe id="htmlbox" style="background:#HEX url(path/to/file); width:600px; height:100px" tabindex="1"></iframe>
Find:
Code:
<textarea name="message" id="qr_message" class="bginput" style="width:600px; height:100px" cols="60" rows="5" tabindex="1"></textarea>
Change to:
Code:
<textarea name="message" id="qr_message" class="bginput" style="background:#HEX url(path/to/file); width:600px; height:100px" cols="60" rows="5" tabindex="1"></textarea>
Find:
Code:
<textarea name="message" id="qr_message" class="bginput" style="width:600px; height:100px;" rows="5" cols="60" tabindex="1"></textarea>
Change to:
Code:
<textarea name="message" id="qr_message" class="bginput" style="background:#HEX url(path/to/file); width:600px; height:100px;" cols="60" rows="5" tabindex="1"></textarea>
Remember to change the "
green" text to your own values.
Let me know how it goes.