Note that there are some explanatory texts on larger screens.

plurals
  1. POreCAPTCHA Displayed in a FORM - Image Needs Padding
    primarykey
    data
    text
    <p>I've got a fully functional reCAPTCHA widget located <a href="http://www.mynextbit.com/Pages/ArabicRootMachine/feedback.php" rel="nofollow">here</a>. It's part of a larger HTML FORM and I'm having difficulty adjusting the image that is returned from:</p> <pre><code>&lt;?php echo recaptcha_get_html($public_key); ?&gt; </code></pre> <p>Adding any padding/margin to the form itself moves everything to the right, but I only need to adjust the widget. Does my answer lie with a CSS attribute that I can surround this PHP script with?</p> <p>I'll show the entire form if it helps... Thank you in advance for any hints or solutions.</p> <pre><code>&lt;form id="feedback" method="post" action=""&gt; &lt;p&gt; &lt;label for="name"&gt;Name:&lt;/label&gt; &lt;input name="name" id="name" type="text" class="formbox" &lt;?php if ($missing || $errors) { if(isset($name)){ echo 'value="' . htmlentities($name, ENT_COMPAT, 'UTF-8') . '"'; } } ?&gt;&gt; &lt;?php if ($missing &amp;&amp; in_array('name', $missing)) { ?&gt; &lt;span class="warning"&gt;&lt;font color="red"&gt;Please enter your name&lt;/font&gt;&lt;/span&gt; &lt;?php } ?&gt; &lt;/p&gt; &lt;p&gt; &lt;label for="email"&gt;Email:&lt;/label&gt; &lt;input name="email" id="email" type="text" class="formbox"/ &lt;?php if ($missing || $errors) { if(isset($email)){ echo 'value="' . htmlentities($email, ENT_COMPAT, 'UTF-8') . '"'; } } ?&gt;&gt; &lt;?php if ($missing &amp;&amp; in_array('email', $missing)) { ?&gt; &lt;span class="warning"&gt;&lt;font color="red"&gt;Please enter your email address&lt;/font&gt;&lt;/span&gt; &lt;?php } elseif (isset($errors['email'])) { ?&gt; &lt;span class="warning"&gt;&lt;font color="red"&gt;Invalid email address&lt;/font&gt;&lt;/span&gt; &lt;?php } ?&gt; &lt;/p&gt; &lt;p&gt; &lt;label for="comments"&gt;Comments: &lt;?php if ($missing &amp;&amp; in_array('comments', $missing)) { ?&gt; &lt;span class="warning"&gt;&lt;font color="red"&gt;Please enter your comments&lt;/font&gt;&lt;/span&gt; &lt;?php } ?&gt; &lt;br /&gt;&lt;/label&gt; &lt;textarea name="comments" id="comments" cols="60" rows="8"&gt;&lt;?php if ($missing || $errors) { if(isset($comments)){ echo htmlentities($comments, ENT_COMPAT, 'UTF-8'); } } ?&gt;&lt;/textarea&gt; &lt;/p&gt; &lt;script type="text/javascript"&gt; var RecaptchaOptions = { theme : 'white' }; &lt;/script&gt; &lt;?php //Display the error message if the values don't match. if (isset($errors['recaptcha'])) { ?&gt; &lt;p&gt;&lt;font color="red"&gt;The values didn't match. Try again.&lt;/font&gt;&lt;/p&gt; &lt;?php } ?&gt; &lt;?php echo recaptcha_get_html($public_key); ?&gt; &lt;p&gt; &lt;input name="send" id="send" type="submit" value="Send message" /&gt; &lt;/p&gt; &lt;/form&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload