Quote:
Originally Posted by Karthick
In FireFox the box appears somewhere in the middle of the screen. Is there any way to make the corner of it touch the button, just like in IE?
|
<if condition="$bbuserinfo['signature'] != ''"> is wrong. It only shows the signature box if the VIEWER has signature. It should show signature box if the poster has signature right? Got this trouble after alloying admin and mod to quickedit.
I just took out that conditional statement. The sig box is there all the time, but if it is checked when the user doesn't have signature, it still goes through, giving no errors.
Actually, changed to this code now: If there is a signature on the post, the box will be checked, if there is no signature it will be unchecked.
PHP Code:
<if condition="!$post['signature']"><label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="1" /><span class="smallfont">Signature</span></label></if>
<if condition="$post['signature'] != ''"><label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="1" checked /><span class="smallfont">Signature</span></label></if>