jamesoff.net




1
Apr
2008
0

BBC News Stylish script

The new BBC News layout seems to be causing some people to stress out a bit - but then all new redesigns do until they get used to them. I quite like it, but for a friend I knocked this up quickly to get rid of the two banners across the top of the page.

You’ll need Stylish and then stick this in a userscript for it. You may need to adjust the domain (2nd line) if you don’t use news.bbc.co.uk to access the site.

@namespace url(http://www.w3.org/1999/xhtml);
 
@-moz-document domain("news.bbc.co.uk") {
 
#blq-displayoptions, #blq-accessibility-help, #blq-mast { 
  display: none !important;
}
 
.newsbanner {
  display: none !important;
}
}

The first block (#blq-displayoptions et al) is for the grey banner; the second block is for the red BBC News one.


Permalink | Posted in Coding internets and tagged  

Add a comment