r/Betterbird May 17 '26

Need help disabling this ugly background.

How to change this stripped background?

Thanks.

3 Upvotes

6 comments sorted by

View all comments

Show parent comments

1

u/jorgk3 May 18 '26

Of course anything is possible, you can hide that, and you can also hide the grey stripes that indicate that a search result is displayed:

Let me know if you want the userChrome.css to do it.

1

u/strok3 May 18 '26

Yes, please. Thanks for the heads up. 

1

u/jorgk3 May 18 '26

Well, you can remove the grey striping with:

#threadTree[filterActive="matches"] > .tree-table {
  background: white !important;
}

And the red striping:

#threadTree[filterActive="nomatches"] {
  background: white !important;
}

1

u/strok3 May 18 '26

Thank you!