Neowin ad placeholders not removed

Boo Berry

Moderator + Beta Tester
Moderator
Quick report. This is an issue I saw plaguing some adblockers for Chrome, Safari and Opera that when adding the following rules for Neowin.net the ad placeholders aren't removed due to some anti-adblocker CSS overriding code. However, the placeholders are removed in Firefox when using Adblock Plus;

www.neowin.net##.banner-leaderboard
www.neowin.net##.banner-square

Here's a bug report about the issue here effecting Adblock (Chrome extension): http://code.google.com/p/adblockforchrome/issues/detail?id=5943

I can confirm it happens in Adguard when adding the rules above. Going by the bug report my guess is it'll probably have to be "fixed" (workedaround) in Adguard itself.

This is how it looks in IE with Adguard (I highlighted the placeholder in red): http://img846.imageshack.us/img846/5070/internetexplorer.jpg

This is how it's supposed to look like in Firefox with Adblock Plus: http://img534.imageshack.us/img534/6484/firefoxq.jpg

So, can this 'issue' be workaround?
 
Last edited by a moderator:

avatar

Administrator
Staff member
Administrator
You cannot block it with CSS rules because these blocks style has been set explicitly (http://i.imgur.com/j9UeE.png look at "style" attribute).

However you can remove this element from the page with Adguard content blocking rules:
Code:
neowin.net$$div[class="banner-leaderboard"]
neowin.net$$div[class="banner-square"]
Adblock can hide them because it use special Firefox content blocking feature instead of CSS (only firefox plugins can use it).
Chrome extension cannot do this (it is firefox-only feature).
 

Boo Berry

Moderator + Beta Tester
Moderator
Those rules work perfectly! And believe it or not, I was able to re-create rules like above for other sites to fix other sizes which had element hiding issues I noticed when using Internet Explorer (but the old rules worked in Opera/Maxthon)! :D
 
Last edited by a moderator:

avatar

Administrator
Staff member
Administrator
Those rules work perfectly! And believe it or not, I was able to re-create rules like above for other sites to fix other sizes which had element hiding issues I noticed when using Internet Explorer (but the old rules worked in Opera/Maxthon)! :D
Internet Explorer has some issues with CSS-rules, but content rules != CSS rules (some elements are added to the web page dynamically with javascript, content filter does not see them).
 

Boo Berry

Moderator + Beta Tester
Moderator
Thanks for the info! I wonder if Internet Explorer 10 will address the CSS-rules issues.
 
Top