- Okugcinwe kunqolobane
How to completely remove tabs bar using userChrome.css
I have been seaching for the solution for the whole day, and i found the closest one. It Does remove tabs, windows buttoms, but the background bar still remains, and i do… (funda kabanzi)
I have been seaching for the solution for the whole day, and i found the closest one. It Does remove tabs, windows buttoms, but the background bar still remains, and i dont need it this way. So thats the code i used to make it >>>>>
- main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar .titlebar-spacer {
border-inline-end: none;
}
- main-window:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
opacity: 0; pointer-events: none;
} /* This makes the bar shorter vertically but removes the 3 window buttons */
- main-window #TabsToolbar {
visibility: collapse !important;
} /* For full screen mode */
- TabsToolbar[inFullscreen]{
display: none !important;
}
On the screenshot you can see what remains on tabs' bar place I need my browser to end just above the URL string, so there wont be empty space in the top of the monitor. Can you help me find solution for this problem, please?