2015-09-29 54 views
0

我們遇到了一個奇怪的問題與谷歌的reCAPTCHA。谷歌reCAPTCHA 2.0:奇怪的太大白色背景

如果向下滾動到最底部,則可以看到問題here

一切都好,但由於某種原因,它下面有這個奇怪的白色背景。

任何人都知道如何解決這個問題?我嘗試了所有可以找到的「黑客」。

Screenshot

回答

0

在你CSS文件你寫爲:

.textbox iframe, .textbox embed { 
    max-width: 100% !important; 
    height: 380px !important; /* and this height is causing the extra white background */ 
} 

重寫這個你可以做:

.g-recaptcha iframe { 
    height: 100% !important; 
} 

它會做的伎倆爲你。

+0

忘記了!謝謝。 –

+2

@vivekkupadhyay你是一個天才,拯救了我的一天。 –