How to remove some other ads & remain google’s ads intact
March 24th, 2007Some other ads adds a line of closing tags in end of the </html> tag & before their javaScript. In whatever.js you will find the CSS ID id="whatever", we can use this to remove some ad thru our CSS stylesheet so google’s ads will remain intact.
You can use #whatever rather than iframe as shown below:
/* Begin Block Ads */
#whatever {
height: 0px;
visibility: hidden;
display: none; !important
}
/* End Block Ads */
This similiar hack will work on most of ads, affiliate ads & more depends on if they have their own CSS ID.








