Hi,
thanks for this example.
You are right, that this does not look to good.
The problem is, that the recaptcha is completely rendered by Google as an Iframe inside the form, so I do not have much control over the layout. Nevertheless it is possible to let it look better.
You can add some custom css
Please check out the documentation article
www.vi-solutions.de/en/documentations/vi...form-layout-with-css
to learn how to add custom css to Visforms.
The following css should work for your website
.captchaCont {
min-height: 100px;
padding-left: 200px;
}
@media (max-width: 767px) {
.captchaCont {
min-height: 150px;
}
#captcha-lbl {
width: 100%;
}
}
(The @media adds css for small devices)
Each form has a specific id in html context. The form on the page with your link for example #visform1
If you have to make it more specific, so that it works only on a specific form, you have to use this id with your css selector.
For example
#visform1 .captchaCont {
min-height: 100px;
padding-left: 200px;
}
@media (max-width: 767px) {
#visform1 .captchaCont {
min-height: 150px;
}
#visform1 #captcha-lbl {
width: 100%;
}
}
Regards,
Aicha