off-topic split from t=26428

The battleground for flame wars, off-topic derailments and spurious madness.
Locked
Mad_Man_Moon
Senior Member
Posts: 75
Joined: Fri Oct 27, 2017 12:02 pm

off-topic split from t=26428

Post by Mad_Man_Moon »

Also, this isn't quite filtering, per se, but if you're running FireFox you can also enforce your own userContent.css which will allow you to (essentially) change what CSS loads on the site by specifically addressing particular entries.

I would imagine that it might be possible to also address more, but I'm still trying to 'build' by own Twitter. 8-)

Code: Select all

@-moz-document domain(twitter.com) {

  /* Remove the "Home" button */

  a[aria-label="Home"]{
    display:none !important;
  }

}
Adding the !important is almost always required to override the page's CSS.

Anyhow, here isn't the place to go into a full how to, but if you do a StartPage/DDG on userContent.css you'll get yourself some tutorials, and start to get WAY too into it. ;)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:94.0) Gecko/20100101 Firefox/94.0
musonius
Master Bug Buster
Posts: 203
Joined: Sun Jul 08, 2018 5:38 pm

Re: off-topic split from t=26428

Post by musonius »

Reason for the split: the OP wanted to prevent remote CSS files from being downloaded/used, not custom styling being applied to web pages.
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0
Locked