
I need help removing the tab bar. Firefox 77 for Windows
I hate the tab bar. I'm trying to get it to hide when only one tab is open. I followed the instructions here
https://support.mozilla.org/bm/questions/1271391
Now the tab bar is gone but the menu bar has expanded to fill that entire space. I know how to put css code in userChrome.css but I don't know what to say. I need something that either shrinks the tab bar to nothing or almost nothing or something that shrinks the menu bar. I've been Googling around for an hour with no luck.
Thanks for reading this.
Wšě wotmołwy (5)
Can you attach a screenshot ?
- https://support.mozilla.org/en-US/kb/how-do-i-create-screenshot-my-problem
- use a compressed image type like PNG or JPG to save the screenshot
image
Can you post the current content of your userChrome.css ?
/* Hide solo tab */ #tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"] { visibility: collapse; } /* Hide New Tab Button immediately next to solo tab */ #tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"] + toolbarbutton { visibility: collapse; } #tabbrowser-tabs tab + toolbarbutton { visibility: collapse; } #tabbrowser-tabs, #tabbrowser-tabs > .tabbrowser-arrowscrollbox { min-height: 0 !important; }
Wot John
When I posted it changed all the hash symbols to "1." I'm trying to figure out how to edit it so it displays correctly.
OK, got it. I had to use "pre" tags.
Wot John