UserContent-example.css

From MozillaZine Knowledge Base
Jump to navigationJump to search

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