You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to reCAPTCHA
Hi,
I didnt find any documentation on how to influence recaptcha badge postion for the version 3.
I would like to change the z-index since the badge is hidden behind some content on the page.
Best,
Romain
Gwangseok O
unread,
Jul 19, 2019, 5:53:32 PM7/19/19
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to reCAPTCHA
.grecaptcha-badge {
z-index: [number];
}
or
.grecaptcha-badge:hover {
z-index: [number];
}
2019년 7월 19일 금요일 오전 4시 59분 25초 UTC+9, Romain Gibassier 님의 말:
Romain Gibassier
unread,
Jul 22, 2019, 6:14:03 PM7/22/19
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to reCAPTCHA
Found two ways to position google captcha, first one permit to place wherever you want the captcha but it brokes the animation and I was forced to use fixed postion, so not really modulable :
id=grecaptcha.render('g-recaptcha', {
sitekey: captchaId,
size: 'invisible',
badge: 'inline'
});
returnid;
});
Second one more convenient if you dont need to place it somewhere preicse :