block list of elements

Posting here is no longer possible, please use the forum of a filter list project, such as EasyList
Locked
smk
Posts: 100
Joined: Mon Jul 14, 2008 6:54 am

block list of elements

Post by smk »

I'm trying to block a link list on a site, the code is as following:

Code: Select all

</div></dd></dl><dl class="sideboxyellow"><dt><img src="templates/images/titles/affiliate-sites.gif" alt="Affiliate" height="27" width="182" /></dt><dd><div align="left"><table class="topgamescashe" cellspacing="1"><tr><td class="topgamerowalt"><a href="link.php?action=out&id=1">Arcade Games</a></td></tr><tr><td class="topgamerow"><a href="link.php?action=out&id=2">Best Myspace Graphics</a></td></tr><tr><td class="topgamerowalt"><a href="link.php?action=out&id=5">Sonic Games</a></td></tr><tr><td class="topgamerow"><a href="link.php?action=out&id=6">Tween Online Games</a></td></tr><tr><td class="topgamerowalt"><a href="link.php?action=out&id=7">Addicting games</a></td></tr><tr><td class="topgamerow"><a href="link.php?action=out&id=8">VG Toys Blog</a></td></tr><tr><td class="topgamerowalt"><a href="link.php?action=out&id=9">Buy Video Game Toys</a></td></tr><tr><td class="topgamerow"><a href="link.php?action=out&id=13">Online games arcade</a></td></tr><tr><td class="topgamerowalt"><a href="link.php?action=out&id=18">Free Games</a></td></tr><tr><td class="topgamerow"><a href="link.php?action=out&id=27">My Fun Land</a></td></tr><tr><td class="topgamerowalt"><a href="link.php?action=out&id=28">Rivaldo Gibs</a></td></tr><tr><td class="topgamerow"><a href="link.php?action=out&id=26">Juegos</a></td></tr><tr><td class="topgamerowalt"><a href="link.php?action=out&id=30">My Fun Land</a></td></tr><tr><td class="topgamerow"><a href="link.php?action=out&id=31">oto kiralama</a></td></tr><tr><td class="topgamerowalt"><a href="link.php?action=out&id=34">Unreal Planet</a></td></tr><tr><td class="topgamerow"><a href="link.php?action=out&id=33">Streaming music Free mp3 downloads</a></td></tr><tr><td class="topgamerowalt"><a href="link.php?action=out&id=35">Link Markets</a></td></tr><tr><td class="topgamerow"><a href="link.php?action=out&id=36">ArcadeTruck Flash Games</a></td></tr><tr><td class="topgamerowalt"><a href="link.php?action=out&id=39">Tarik</a></td></tr><tr><td class="topgamerow"><a href="link.php?action=out&id=40">Ize games</a></td></tr></table><div class="boxbutton"><a href="page-link_trade.html"><img src="templates/images/buttons/add-link.gif" width="182" height="24" border="0" alt="Add Link" /></a></div></div></dd></dl></td><td class="centercol"><div class="box">
blocking #*(class=box) would block too much
something i would like to do is block ##everysibling+*[href="link.php"]+everysibling
how would I be able to achieve this?
Wladimir Palant

Post by Wladimir Palant »

I don't really see what you mean. The code that you quote should be best hidden with "site.com#table(class=topgamescashe)". Maybe give us a link?
Ares2
Posts: 1275
Joined: Fri Feb 15, 2008 12:47 pm

Post by Ares2 »

http://www.zoopgames.com/

Probably he means the yellow box?

Code: Select all

zoopgames.com#DL(class=sideboxyellow)
Last edited by Ares2 on Wed Aug 06, 2008 7:45 am, edited 1 time in total.
smk
Posts: 100
Joined: Mon Jul 14, 2008 6:54 am

Re:

Post by smk »

The filter works fine :) , but there's loads on many sites :( I just want to compose a generic filter that if you have 1 of those href s, like 'online casino', it blocks the whole list of links
smk
Posts: 100
Joined: Mon Jul 14, 2008 6:54 am

Re:

Post by smk »

Thanks anyway :)
I discovered RIP (how come never seen it before???) and blocked all the ads :D
I'll need to use it with abp
Ares2
Posts: 1275
Joined: Fri Feb 15, 2008 12:47 pm

Re:

Post by Ares2 »

smk wrote:I discovered RIP[...]I'll need to use it with abp
You won't. :wink: You should take a look at the ABP Element Hiding Helper: https://addons.mozilla.org/addon/4364

It works similar to RIP but creates rules for ABP (like the one I gave you).

You can also hide links with it, for example for zoopgames, it would be something like

Code: Select all

zoopgames.com#A(href^=link.php?action=out)
smk wrote:I just want to compose a generic filter that if you have 1 of those href s, like 'online casino', it blocks the whole list of links
But different sites have different link structures most of the time, so creating just 1 filter for all link lists on all sites isn't possible.
Locked