4

I need to make google recaptcha responsive not with transform scale only with width 100% and other but not transform scale. I am Searching many other sites but many of them only use transform scale.

here is a image.

enter image description here

rink.attendant.6
  • 40,889
  • 58
  • 100
  • 149
Ahsan Abrar
  • 89
  • 2
  • 12
  • 2
    Can you add your HTML and CSS? Without that it's very hard to help you. – CodeF0x May 18 '18 at 07:49
  • No because i am using API but I'm overwrite this CSS. thanks – Ahsan Abrar May 18 '18 at 07:52
  • Then I think this post may help you: https://stackoverflow.com/questions/27691411/change-new-google-recaptcha-width?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa – CodeF0x May 18 '18 at 07:57

2 Answers2

3

The problem with Google Recaptcha is, that it is loading in an IFrame, so styles do not apply.

Domenik Reitzner
  • 1,493
  • 1
  • 12
  • 20
-1

Without knowing your code I'm not 100% sure but try like this:

css

#patherdivofgooglecaptcha * {width: 100%}

If it works but some elements become too big just limit the CSS where you need it, or if it is an iframe try to give 100% directly on the container and not to the children.

User
  • 184
  • 2
  • 11