UserContent-example.css

From MozillaZine Knowledge Base
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

An example userContent.css file shipped with some Mozilla applications. You might find this file in a profile's chrome folder. Or you might find it in the application's installation directory, somewhere in the defaults directory there.

To use the examples in the file, you must edit them so that the CSS rules are outside the comments. For example, the file contains:

/*
 * example: turn off "blink" element blinking
 *
 * blink { text-decoration: none ! important; }
 *
 */

To make this work in userContent.css, change it to:

/*
 * example: turn off "blink" element blinking
 */
blink { text-decoration: none ! important; }

External links