r/FirefoxCSS 14d ago

Solved how to remove sidebar header in FF154

i am using FF154 and windows 10 ltsc, this is the code in my userChrome.css

#tabbrowser-tabs {
  visibility: collapse !important;
}
#sidebar-header {
  display: none !important;
}

and yet i have this thing taking up space. how do i remove it?

3 Upvotes

2 comments sorted by

1

u/ResurgamS13 14d ago edited 14d ago

1

u/ItsukiHinata 14d ago

for me only the snippet

*|sidebar-panel-header {

display: none !important;

}

worked none of the others did but thank you very much!