Tech

How to make the Google reCAPTCHA badge invisible on the website?

Google reCAPTCHA is now one of the most widely deployed security measures on the web. However, in its latest iteration, Google displays only a small badge in the bottom‑right corner of your site. While this “badge” serves its legal purpose, it isn’t always the most elegant design choice. In this article, I’ll show you how to remove the reCAPTCHA badge from your site—especially if you’re running WordPress—while staying fully compliant with Google’s requirements.

Google reCAPTCHA has become almost ubiquitous for protecting websites against spam and automated abuse. In its latest version, reCAPTCHA v3, Google displays only a small badge (badge) in the bottom right corner of the page. While this badge fulfills attribution requirements, it can clash with your site’s design or distract users. In this article, I’ll explain how to remove that badge from your site—particularly if you’re using WordPress—without violating Google’s terms of service.

For many years, Google offered reCAPTCHA v2 (second version), which prompted users to solve image‑based puzzles or click a checkbox to prove they were human. Although effective, it added friction to the user experience and sometimes required multiple challenges in a single session. To address this, Google introduced reCAPTCHA v3 (third version), which runs entirely in the background and assigns each request a risk score. The only visible element is a small badge linking to Google’s privacy policy and terms of service.


Before hiding the badge, it’s crucial to understand Google’s legal requirements. According to the reCAPTCHA FAQ, you may conceal the badge as long as you include a visible attribution elsewhere in the user flow—typically in your site’s footer. This ensures users are still informed that your site is protected by Google’s anti‑bot technology.

Google recommends adding the following notice to your footer:

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Once you’ve added this attribution, hiding the badge is straightforward. Add this single line of CSS to your stylesheet:

.grecaptcha-badge { visibility: hidden; }

If you prefer, you can insert it directly into your section:


On WordPress, the easiest way is to go to Appearance → Customize → Additional CSS and paste the snippet there. This approach keeps the badge in the document flow—allowing reCAPTCHA scripts to run correctly—while making it invisible to users.

Important: Do not use display: none; on the badge. Completely removing it from the DOM can prevent the reCAPTCHA script from loading or reporting risk scores properly, effectively disabling spam protection and exposing your forms to bots. Using visibility: hidden; ensures the badge remains present in the markup without being visible.

Benefits of Hiding the Badge

You might wonder why you would want to hide the badge at all. Here are the main advantages:

  • Sleeker Visuals: The badge can overlap important UI elements or look out of place, especially on mobile screens.
  • Improved UX: With reCAPTCHA v3 running invisibly, end users won’t encounter any extra clicks or puzzles.
  • Consistent Branding: Removing third‑party UI elements helps maintain a clean, cohesive design.

Troubleshooting and Best Practices

  • If the badge still appears, clear your browser cache and any CDN cache to ensure your new CSS is applied.
  • Use your browser’s developer tools to inspect the .grecaptcha-badge element and confirm that no other stylesheet is overriding your rule.
  • Double‑check that your footer attribution text is clearly visible and matches Google’s recommended wording.
  • Monitor Google’s documentation periodically in case their policy changes regarding badge visibility.

Accessibility Considerations

Even though the badge is invisible, make sure your site remains accessible:

  • Use semantic HTML for your footer attribution so screen readers can announce it properly.
  • Ensure that hiding the badge does not interfere with focus order or navigation.

By following these simple steps, you can maintain a badge‑free integration of reCAPTCHA v3 while retaining its powerful, behind‑the‑scenes spam protection. This solution keeps your interface clean, enhances usability, and meets Google’s legal requirements. If you encounter any issues or have questions, feel free to leave a comment below. Happy coding!


Photo by Caio

Comments

Recommended Posts for You

LGBTQIA+

Check out the full review of Netflix's Heartstopper series and find out if the Heartstopper series delivers everything it promises in full!

Cinema

“One of the most memorable cartoons of the 20th and 21st centuries. Its story, characters and writing are utterly captivating. “Little Bear” is known...

Curiosities

Super Mario World, also known as “Super Mario Bros. 4” in Japan, is without a doubt one of the most popular games of all...

Cinema

“Courage the Cowardly Dog” tells the story of Courage, a dog who’s easily scared and lives on a farm with Muriel and Eustace Bagge...

Cinema

Who doesn’t know this epic cartoon from Hanna-Barbera, Wacky Races, where eleven competitors vied in every episode for the world title of “World’s Wackiest...

Cinema

Sagwa, one of the best cartoons still airing on the Futura channel. In fact, all the shows on Futura are excellent. It tells the...

Cinema

“Do you remember the classic cartoon Timon and Pumbaa? It’s an animated TV series produced by Walt Disney Animation, starring the warthog and meerkat...

Cinema

At the end of the 1930s, animation was at its peak. It was called the “Golden Age” by many film enthusiasts, where classic characters...

Cinema

Woody Woodpecker, one of the most beloved characters of all time. Adored by children, teenagers, and adults alike. The show itself dates back to...

Curiosities

Grand Theft Auto V (GTA V) is known for its vast open-world gameplay, where players can explore, complete missions, or just cause chaos. One...

Others

“Castelo Rá‑Tim‑Bum” premiered in 1994 on TV Cultura, delighting fans of the original “Rá‑Tim‑Bum” who were tired of its reruns, as well as other...

Tech

If you grew up playing console games in the 1980s and 90s and never heard this one, count yourself lucky—very lucky. Here’s the urban...

Cinema

Walt Disney, one of the largest and most influential entertainment giants in the world, has a long history of innovation in animation. From its...

Games

“Nintendo 64” is Nintendo’s third home video game console. Commonly abbreviated as “N64,” it launched on June 23, 1996 (Japan) and on September 29 in the United States....

Games

How about transforming your Minecraft into an even more immersive game? With that in mind, the “Realistico” Mod Pack was developed—a texture pack with...

Games

<iframe width="1665" height="705" src="https://www.youtube.com/embed/Xg5ajToIUoM" title="Just Dance 2016 - Real dancers behind the scenes #1" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>You’ve...

Games

Need For Speed Heat has finally hit the streets and is increasingly reminiscent of the franchise’s golden-era titles, such as Need For Speed Underground...

Games

It's time to talk about Far Cry 4: a new game in the iconic open-world franchise that first arrived over 10 years ago with paradisiacal...

Games

Recently, Plants vs. Zombies Garden Warfare was released—it’s the new game from PopCap, famous for its mobile hits. This time, we have a review...

Devs

The kernel is one of the most fundamental components of any operating system (OS), acting as a bridge between the hardware of a computer...

Copyright © 2025 Juan de Souza - All Rights Reserved. Hosting by TFX.

Exit mobile version