10

How to permanently add CSS to some pages using Firefox?

Say, I want to change the font or background of a page I frequent using Firefox.

How to do that?

8128
  • 28,868
wyc
  • 1,741

4 Answers4

8

There's a great extension called Stylish that does exactly what you're looking for. It allows you to add custom CSS to the pages you visit.

5

You can add custom CSS rules to a chrome/userContent.css file in your Firefox profile folder.

Example:

/* For any page */
body { margin: 10px; border: 1px solid red !important; }

/* Or only for google.com */
@-moz-document domain(google.com) {
    body { margin: 10px; border: 1px solid red !important; }
}
mivk
  • 5,811
0

You can still use chrome/userContent.css in your profile folder but as of Firefox 69 and newer, you have to manually set toolkit.legacyUserProfileCustomizations.stylesheets to true in about:config to work.

premek
  • 1