Validation error w3c frameborder recaptcha

0

I have a website created in wordpress with the recaptcha plugin for google and avoid spam. I wanted to know if there is any way to put the recaptcha manually without plugin since validating with the w3c validator gives me the following error

 The frameborder attribute on the iframe element is obsolete. Use CSS instead.
From line 196, column 5; to line 196, column 194 
<iframe src="https://www.google.com/recaptcha/api/fallback?k=6Lf6pwgUAAAAAASINHjY19c95ftI3Mf7K8bVg7GI" frameborder="0" scrolling="no" style="width: 302px; height:422px; border-style: none;">↩ 

The scrolling attribute on the iframe element is obsolete. Use CSS instead.
From line 196, column 5; to line 196, column 194
<iframe    src="https://www.google.com/recaptcha/api/fallback?k=6Lf6pwgUAAAAAASINHjY19c95ftI3Mf7K8bVg7GI" frameborder="0" scrolling="no" style="width: 302px; height:422px; border-style: none;">↩      

I wanted to know how I can correct these errors?

    
asked by AitorUdabe 31.10.2016 в 17:06
source

1 answer

-1

If you have access to the html code you can delete the parameters frameborde and scrolling and your problem will be solved, the rest is to add the following in the esilo:

To replace frameborde 'style="border: none;" In the case of scrolling, a style is not necessary, your code would look like this:


<iframe src="https://www.google.com/recaptcha/api/fallback?k=6Lf6pwgUAAAAAASINHjY19c95ftI3Mf7K8bVg7GI" style="width: 302px; height:422px; border: none;">

That should solve. ;)

    
answered by 31.10.2016 в 20:05