Forum Moderators: open
[today.reuters.co.uk...]
There is now an animated easyjet advert running across the top as well.
There must be an easy way to kill this sort of stuff and return my browser to my control?
User stylesheets are a solution which FF handles nicely,
embed[src*="ad.uk.example.com"],
embed[src*="ds.example-sys.com"]
{display: none !important;}
You could put a variation of that CSS in an IE user stylesheet but unfortunately the 6.3.2. Substring matching attribute selectors [w3.org], which the above relies on, are a CSS3 proposal which IE doesn't support.
And although IE does allow you to use a user stylesheet, finding a full unique selector for a situation like the above is a full time job, as it seems to be generating unique ID's with each ad.
there is a div on that site that can be targetted which at least stops the rollover effect, but beware if you block it and some other site happens to use that name on a div it could block content at another site too:
div#eyeDiv
{display: none !important;}
and also this will likely only work on a per site basis, whereas the Opera/FF solutions are global.
To set up a user stylesheet for IE, save a text file as ie.css (on the desktop or wherever). In IE
Tools ->Internet Options, General Tab -> Accessibility check the User Stylesheet Box and browse to where you just saved the file.
After you make any changes to the stylesheet, if you wanted to add the above rule for instance, you would need to restart IE for them to take effect.
It's a bit of long way around, but for something as annoying as that it might be worth it! or just switch To Opera or FF?
Suzy
I set IE to high security but of course have to enable Javascript so other needed things work.
Then in Tools>advanced>Multimedia there is a tick box to disable animated pictures.
lo and behold that really annoying animated little man has stopped, the easyjet and BMW adverts are also just sitting there.
You could put a variation of that CSS in an IE user stylesheet but unfortunately the 6.3.2. Substring matching attribute selectors, which the above relies on, are a CSS3 proposal which IE doesn't support.
just doing some checking on the above and seems IE7 *does* support these "Substring matching attribute selectors", - although as yet I can't get it to work in a user stylesheet :(