yoasifM to Firefox [email protected] • 2 years agoWhat is userChrome.css?kb.mozillazine.orgmessage-square2fedilinkarrow-up131arrow-down12
arrow-up129arrow-down1external-linkWhat is userChrome.css?kb.mozillazine.orgyoasifM to Firefox [email protected] • 2 years agomessage-square2fedilink
minus-square@simo97link9•edit-22 years agoIt 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; }
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.
/* hides the native tabs */ #TabsToolbar { visibility: collapse !important; } #sidebar-header { visibility: collapse !important; }
OP linked a wiki article that explains it in depth.