How to remove the yellow background behind Google AdSense ads
There are two primary reasons why you might see a yellow background behind Google AdSense advertisements on your website. You might notice the yellow color before and after advertisements load on your website. For one, many WordPress themes automatically have the <ins> tag (also known as the ins attribute) set to yellow in your CSS style sheet. The other reason could be that the <ins> tag is set around a Google advertisement like: <ins>Advertisement Script</ins>. The ins attribute/tag defines additional text to a document and is commonly used to markup updates and modifications made to a website. The yellow hex color used is #fff9c0 or #ff9 depending on your WordPress theme.
How to remove the Google AdSense yellow background
1. Open your style.css file and search for the color: #fff9c0 or #ff9. You can find your CSS style sheet for WordPress websites at this path: Appearance > Editor and you can type Ctrl+F to enable a search field in your browser.
2. If there is a result matching #fff9c0 or #ff9 on your CSS style sheet you will want to change it to your website’s background color (such as #ffffff for white, #000000 for black, or rgba(25,25,25,0) for transparent). You can also delete the color from your CSS file entirely.
Here are a few examples of what the code you’re looking for might look like:
ins { background: #fff9c0; text-decoration: none; }
ins, .ins { background-color: #ff9; color: #000; text-decoration: none;
ins { background: #ff9; color: #000; text-decoration: none; }
Thanks for sharing, its really works
Use rgba(25,25,25,0) instead of #ffffff for invisible background 🙂
this not working on mobile version!!
You might have a separate CSS sheet for the mobile version of your website. Your mobile device might also need to be cached.
Good luck!
I had the same problem with the wordpress 2016 theme. I thought it was a adsense problem, I had before displaying new adds, but after several hours the background (blue, not yellow) remained. It worked out to be the ins background color from the template. Change to #fff solved it.
Thanks Sean!
I had just changed one of my sites to a new theme and kept thinking something was wrong with my adsense code. A quick tweak to the CSS file per your suggestion did the trick and it no longer looks like there’s a post-it not behind my ads.
Thank you very much. In my case, i updated the following line in style.css: from .entry ins { background: #fff486; } to .entry ins { background: #fffff; } and it worked like a charm.
Thank you!!!!
Worked out perfect. Just changed it to #FFFFFF (white). Cheers man.