• Is it possible to have the CSS set to not be fixed at 300px wide? I have two small forms in a footer and we’re needing to add these to them and they are roughly 230px wide on desktop. But it’s a responsive site, so I’d rather this worked responsively, too, with the widths being set to percentages instead. How do you suggest modifying the styles? Is it possible?

    https://wordpress.org/plugins/gravity-forms-no-captcha-recaptcha/

Viewing 1 replies (of 1 total)
  • EDIT:

    /plugins/gravity-forms-no-captcha-recaptcha/public/class-gf-no-captcha-recaptcha-public.php

    change:

    // Public sees CAPTCHA field
                    return '<div class="ginput_container"><div class="g-recaptcha" data-sitekey="' . $site_key . '" data-theme="' . $theme . '"></div></div>';

    To:

    // Public sees CAPTCHA field
                    return '<div class="ginput_container"><div class="g-recaptcha" data-sitekey="' . $site_key . '" data-theme="' . $theme . '" style="transform:scale(0.67);transform-origin:0 0"></div></div>';

    you may need to play with the
    style=”transform:scale(0.67)

    for your site.

Viewing 1 replies (of 1 total)
  • The topic ‘Responsive / No fixed Width’ is closed to new replies.