Links display color - Thunderbird: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
m (change links to user.js file and profile folder)
m (Links display color (Thunderbird) moved to Links display color - Thunderbird: Conform to article naming conventions and workaround wiki bug. I wasn't sure if it also applied to SeaMonkey too so I kept the reference to Thunderbird.)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
To change the color of links in messages that you view, insert the following code into your [[user.js file]] in your [[profile folder]]:
To change the color of links in messages that you view, insert the following code into your "[[user.js file|user.js]]" file:


    //Color of links in messages
//Color of links in messages
    user_pref("browser.anchor_color", "#000000");
user_pref("browser.anchor_color", "#000000");


In this example, #000000 is for black. For other colors, you can try this [http://www.meyerweb.com/eric/tools/color-blend/ Color Blender].
In this example, #000000 is for black. For other colors, you can try this [http://www.meyerweb.com/eric/tools/color-blend/ Color Blender].


To turn off the underlining of links in messages, insert the following into your user.js file:
To turn off the underlining of links in messages, insert the following into your "user.js" file:


    //Disable underlining of links
//Disable underlining of links
    user_pref("browser.underline_anchors", false);
user_pref("browser.underline_anchors", false);
 
[[Category:Visual customizations (Thunderbird)]]
[[Category:Configuration (Thunderbird)]]

Latest revision as of 23:10, 11 February 2007

To change the color of links in messages that you view, insert the following code into your "user.js" file:

//Color of links in messages
user_pref("browser.anchor_color", "#000000");

In this example, #000000 is for black. For other colors, you can try this Color Blender.

To turn off the underlining of links in messages, insert the following into your "user.js" file:

//Disable underlining of links
user_pref("browser.underline_anchors", false);