FirefoxCSS·Firefox Customsbyyoasif What is userChrome.css?http://kb.mozillazine.org/index.php?title=UserChrome.cssOpen linkView original on fedia.io29Comments2
ssimo97 lemmy.world1Hide 1 replyIt is a file / folder that, when enabled, allow a user to customize the interface of Firefox. For example, I use tree style tabs, so my tabs are on the right. To remove the standard tab bar, I used the userChrome.css. /* hides the native tabs */ #TabsToolbar { visibility: collapse !important; } #sidebar-header { visibility: collapse !important; } 9
It is a file / folder that, when enabled, allow a user to customize the interface of Firefox.
For example, I use tree style tabs, so my tabs are on the right. To remove the standard tab bar, I used the userChrome.css.
OP linked a wiki article that explains it in depth.