Page 1 of 1

help with creating a element hiding filter

Posted: Fri Apr 13, 2007 8:36 pm
by retard
Please, someone fix my filter so it will work right. ABP doesn't care about my not equals sign !=

Code: Select all

table[width="770"][height!="144"]

Re: help with creating a element hiding filter

Posted: Fri Apr 13, 2007 8:49 pm
by chewey
retard wrote:ABP doesn't care about my not equals sign !=
That's because there is no such thing in CSS.

Try the following:

Code: Select all

##table[width="770"]:not([height="144"])
(the ## being the "raw CSS syntax" modifier in ABP's filter snytax)

Posted: Fri Apr 13, 2007 8:51 pm
by retard
Thanks, that works beautifully.