First let me thank the developers for having such an amazing addon. Cheers.
I have been using abp since a while now. learning to start developing / writing filters. my first attempt is to hide HTML enclosed in comments. some thing like
<!-- custom block start -->
<some HTML Code>
<!-- custom block end -->
Here is the block that I want to hide completely.
Code: Select all
<!-- custom block start -->
<table class="tborder" align="center" border="0" cellpadding="6" cellspacing="1" width="100%">
<tbody>
<tr>
<td class="tcat">
<!-- title start -->
<!-- title end -->
</td>
</tr>
<tr>
<td class="alt2">
<!-- code start -->
<center><a style="display: none;" href="http://www.someforum.com/OpenAds/adclick.php?bannerid=17&zoneid=2&source=&dest=http%3A%2F%2Fwww.berkeleypoint.com%2Findex.html" target="_blank"><img style="display: none;" src="http://www.someforum.com/OpenAds/adimage.php?filename=bp_banner.jpg&contenttype=jpeg" alt="Berkeley Point" title="Berkeley Point" border="0" height="72" width="468"></a><div id="beacon_17" style="position: absolute; left: 0px; top: 0px; visibility: hidden;"><img src="http://www.someforum.com/OpenAds/adlog.php?bannerid=17&clientid=4&zoneid=2&source=&block=0&capping=0&cb=f0e51c5961a82bbeaeda4db22af810c6" alt="" style="width: 0px; height: 0px; display: none;" height="0" width="0"></div></center>
<!-- code end -->
</td>
</tr>
</tbody>
</table>
<br>
<!-- custom block end -->