Make the red changes/additions as shown to the two highlighted lines:
Code:
<td align="left">
<div style="height:129px;position:relative;">
<div style="float:left;">
<script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k=6LehlrsSAAAAALgrit71rtO2XR7LypU27JAnLzx4"></script>
<noscript>
<iframe src="http://www.google.com/recaptcha/api/noscript?k=6LehlrsSAAAAALgrit71rtO2XR7LypU27JAnLzx4" 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> </div>
<div style="position:absolute; bottom:0; left:340px;"><img src="images/recycle.gif"></div>
</div>
</td>
Note: For the div that contains the arrow image (recycle.gif) make sure to remove the top:148px; and replace it with the bottom:0, as shown. If you leave the top:148px; in there, it will override the bottom coord in some browsers.
By setting the other div to position relative and giving it a height equal to the height of the recaptcha feature, the bottom:0 on the image's div will align it perfectly with the bottom of the recaptcha feature.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Alternatively, if you lose the float you don't need to set the height:
Code:
<td align="left">
<div style="position:relative;">
<div>
<script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k=6LehlrsSAAAAALgrit71rtO2XR7LypU27JAnLzx4"></script>
<noscript>
<iframe src="http://www.google.com/recaptcha/api/noscript?k=6LehlrsSAAAAALgrit71rtO2XR7LypU27JAnLzx4" 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> </div>
<div style="position:absolute; bottom:0; left:340px;"><img src="images/recycle.gif"></div>
</div>
</td>
Which is preferable because, if the browser has javascript turned off and the iframe is used, the height will be different. Without the float the height will be automatically calculated by the browser.
Bookmarks