PDA

View Full Version : How to add graphics to quick reply


HexOnxOnx
November 1st, 2003, 12:18 PM
Hi all

I am having some troubles getting images on top and the bottom of the quick reply box. Anyone know how to add:

----left image ----background image ---- right image

Quick reply box

----bottom right image ----background image ----bottom right

I have tried and tried, I just keep messing up the reply box itself.

Thanks!

Floris
November 1st, 2003, 12:27 PM
open the template showthread_quickreply

find:
<form action="newreply.php" method="post" name="vbform" onsubmit="return checkQR(this);">

below add:
<table width="100%%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100">left_img</td>
<td>center_img</td>
<td width="100">right_img</td>
</tr>
</table>

find:
</form>

before add:
<table width="100%%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100">left_img</td>
<td>center_img</td>
<td width="100">right_img</td>
</tr>
</table>

HexOnxOnx
November 1st, 2003, 12:47 PM
Awesome! I got it first try. I changed some things your example a bit but it all works great! I was adding my code in all the wrong places when I was trying to do this on my own!

Thanks Floris!