And in addition to the reCaptcha question ...
It seems like you guys insert paragraph tags around stuff even though they are not present in the template file.
I'm trying to get the "First Name *" and the input box on the same line for example. I attempt to remove all the formatting tags that might affect it. So, I remove the br tag and the span tags around the text First Name in my copy of the template file. So, BEFORE:
- Code: Select all
<span>First Name *</span><br />
<input aria-required="true" type="text" maxlength="100" name="s2member_pro_paypal_registration[first_name]" id="s2member-pro-paypal-registration-first-name" class="s2member-pro-paypal-first-name s2member-pro-paypal-registration-first-name" value="%%first_name_value%%" tabindex="10" />
And AFTER my edits:
- Code: Select all
First Name *
<input aria-required="true" type="text" maxlength="100" name="s2member_pro_paypal_registration[first_name]" id="s2member-pro-paypal-registration-first-name" class="s2member-pro-paypal-first-name s2member-pro-paypal-registration-first-name" value="%%first_name_value%%" tabindex="10" />
I refresh the browser and look in Firebug and, while *those* tags are gone, there's a bunch of other stuff in there. Here's the code that's output that I copied from Firebug:
- Code: Select all
<p>
<br>
<br>
First Name *
</p>
<input id="s2member-pro-paypal-registration-first-name" class="s2member-pro-paypal-first-name s2member-pro-paypal-registration-first-name" type="text" tabindex="10" value="" name="s2member_pro_paypal_registration[first_name]" maxlength="100" aria-required="true">
I then copied and pasted those fields outside of the div tags (thinking there's some magic javascript somewhere) where they are embedded and I get the same behavior. Yikes!
How can I take TOTAL control of the output of this form? At a minimum, I'm trying to get the label and the form field to appear on the same horizontal position.