I use reCAPTCHA , and the text box for recaptcha_challenge_fieldappears in the middle of the recaptcha window, overlapping other things. I found that this is because of this style:
.recaptchatable #recaptcha_response_field {
position: absolute!important;
when i install positionin staticin chrome it looks ok. However, I cannot figure out how to overwrite this CSS parameter.
I tried:
However, I cannot get my css to overwrite this position: static! important; which comes with a script:
<script type="text/javascript"
src="http://www.google.com/recaptcha/api/challenge?k=your_public_key">
</script>
<noscript>
<iframe src="http://www.google.com/recaptcha/api/noscript?k=your_public_key"
height="300" width="500" frameborder="0"></iframe><br>
<textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
<input type="hidden" name="recaptcha_response_field" value="manual_challenge">
</noscript>
Can someone please help with what I am doing wrong? Thank!