Help me block an element on bseindia.com

Posting here is no longer possible, please use the forum of a filter list project, such as EasyList
Locked
theremin
Posts: 19
Joined: Sat Nov 15, 2008 9:25 pm

Help me block an element on bseindia.com

Post by theremin »

I have a slow computer and the 'Corporate Announcements' section (top of the right column) on www.bseindia.com makes browsing very slow by taking a LOT of CPU. How do I block that section while leaving the rest of the page intact? Of course, I can block the script http://www.bseindia.com/Include/jsfiles/news.js, but I want to make the entire section disappear.

I have the element hiding helper installed along with adblock plus in FF3.0.5. All versions are the latest.

Tnx =)
User avatar
Hubird
Posts: 2850
Joined: Thu Oct 26, 2006 2:59 pm
Location: Australia
Contact:

Post by Hubird »

As you already mentioned block http://www.bseindia.com/Include/jsfiles/news.js

Then try

Code: Select all

bseindia.com##DIV.panel01:first-child
Hopefully it does not hide anything it shouldn't !!
theremin
Posts: 19
Joined: Sat Nov 15, 2008 9:25 pm

Post by theremin »

Hubird wrote:As you already mentioned block http://www.bseindia.com/Include/jsfiles/news.js

Then try

Code: Select all

bseindia.com##DIV.panel01:first-child
Hopefully it does not hide anything it shouldn't !!
That bit of code blocks the chart...
adf

Post by adf »

Actually I was able to consistently hide the corporate announcements anywhere on the domain by hiding any element with an onmouseover attribute using parameters matching "corp()"

[onmouseover*="corp()"]
theremin
Posts: 19
Joined: Sat Nov 15, 2008 9:25 pm

Post by theremin »

adf wrote:Actually I was able to consistently hide the corporate announcements anywhere on the domain by hiding any element with an onmouseover attribute using parameters matching "corp()"

[onmouseover*="corp()"]
Thanks for your reply. Where exactly do I enter that code? In the 'Custom CSS' field?
Ares2
Posts: 1275
Joined: Fri Feb 15, 2008 12:47 pm

Post by Ares2 »

What about just using

Code: Select all

bseindia.com#div(id=maindiv_corp)
?
theremin
Posts: 19
Joined: Sat Nov 15, 2008 9:25 pm

Post by theremin »

That does not remove the 'Corporate Announcements' titlebar. :?
Ares2
Posts: 1275
Joined: Fri Feb 15, 2008 12:47 pm

Post by Ares2 »

I thought it doesn't hurt anybody. :wink:

Try

Code: Select all

bseindia.com##div.col02a2 > div.panel01
theremin
Posts: 19
Joined: Sat Nov 15, 2008 9:25 pm

Post by theremin »

Thanks! :D
Locked