Home » Blog » Cybersecurity » Cybersecurity » How to remove the yellow background behind Google AdSense ads
adsense ad yellow background

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 sheetThe 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; }

Lead Editor

Sean is a tech author and engineer with over 20 years of experience in cybersecurity, privacy, malware, Google Analytics, online marketing, and other topics. He is featured in several publications.

More Reading

Post navigation

12 Comments

  • Pingback: Removing the Yellow Background behind Adsense Ads in Wordpress - idothis.com
  • 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.

  • Pingback: Removing the Yellow Background behind Adsense Ads (Wordpress) - i do this.
  • 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.

  • Pingback: » AdSense – yellow box SnowCrash

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

How To Remove Or Style The Happy Face In The WordPress Footer

How To Hide Or Remove WordPress Page And Post Titles With CSS

How to make mobile-friendly images using CSS