Quote:
Originally Posted by Brad
Open the SHOWTHREAD template, find:
HTML Code:
<div align="center" id="qr_posting_msg" style="display:none; margin-top:6px">
<strong>$vbphrase[posting_quick_reply_please_wait]</strong>
</div>
Replace with:
HTML Code:
<div align="center" id="qr_posting_msg" style="display:none; margin-top:6px">
<img src="$stylevar[imgdir_misc]/loading.gif" alt="$vbphrase[posting_quick_reply_please_wait]" border="0" />
</div>
|
Thanks Brad, works a treat.
I still wanted the text underneath the graphic, so I actually replaced it with this:
HTML Code:
<div align="center" id="qr_posting_msg" style="display:none; margin-top:6px">
<img src="$stylevar[imgdir_misc]/loading.gif" alt="$vbphrase[posting_quick_reply_please_wait]" border="0" />
<br /><strong>$vbphrase[posting_quick_reply_please_wait]</strong>
</div>