What is userChrome.css?

http://kb.mozillazine.org/index.php?title=UserChrome.css

29 points · 2 comments · view on lemmy.world

2 Comments

simo97@lemmy.world · 9 pts · 3y (1 reply)

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;
}
Krompus@lemmy.world · 3 pts · 3y

OP linked a wiki article that explains it in depth.