Re: fyi: WP-reCAPTCHA works fine with BuddyPress
Hi again, I have slightly changed the mu-plugins/wpmu-signup-captcha.php to fit better on signup page’s design, if anyone interested you can change the lines 37-51 to the following.
<style>
.captcha_img {
display: inline!important;
float: left!important;
margin-left:10px!important;
border: 1px solid #888a85;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
}
.captcha_label {
display: inline!important;
float: left!important;
line-height: 50px!important;
}
</style>
<div class='field-box'>
<div class="extra-field">
<div <?php echo($error ? 'class="error"' : '') ?>>
<?php if($error){ echo $error; } ?>
</div>
<div class="signup-label">
<label class="signup-label captcha_label">
<?php _e('Verification:')?>
</label>
<img class="captcha_img" src="wp-captcha.php?rand=<?php echo rand(0,999999)?>" alt="Captcha code" border="0" />
<input maxlength="12" name="captcha" type="text" value="" />
</div>
</div>
</div>
i put the styles in php file which is a bad practice but you can always take them yo your custom.css file.