451
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 07 Aug 2023
451 points (97.3% liked)
Firefox
17303 readers
64 users here now
A place to discuss the news and latest developments on the open-source browser Firefox
founded 4 years ago
MODERATORS
How?
you can style firefox with arbitrary css code!
userChrome.css (+also userContent.css, user.js if you need them)
just enable
toolkit.legacyUserProfileCustomizations.stylesheets
in theabout:config
pagethen open your Firefox profile folder, create a folder called "chrome" and create two files: userChrome.css and userContent.css
you can style browser window elements using the userChrome.css
userContent.css applies to all pages, including your firefox home page which is usually impossible to style eith extensions for security purposes (use
-moz-*
queries to restrict to certain pages)You can find your Firefox profile folder at
about:profiles
.https://lemm.ee/comment/1967525
Appreciate you replying, thank you.