browser.visited_color not working

Users and developers helping users with generic and technical Pale Moon issues on all operating systems.
Please direct questions that are Mac or Linux-specific (dealing with installation and OS integration) to the appropriate Linux or Mac board.

Moderator: trava90

Forum rules
This board is for technical/general usage questions and troubleshooting for the Pale Moon browser only. The main focus here is on Pale Moon on Windows. Please direct your questions that are specific for Linux and Mac to the dedicated boards for those operating systems.
Technical issues and questions not related to the Pale Moon browser should be posted in other boards!
Please keep off-topic and general discussion out of this board, thank you!
Locked
DavidP
Newbie
Newbie
Posts: 6
Joined: 2017-12-15, 10:21

browser.visited_color not working

Post by DavidP » 2017-12-15, 10:25

Hi forum,

I'd like to change the color of visited links to something other than the standard purple color (#551A8B).

However, if I change the browser.visited_color hex value accordingly (for example to #FF5200), the visited links are still purple everywhere.

What am I doing wrong?

coffeebreak
Moon Magic practitioner
Moon Magic practitioner
Posts: 2586
Joined: 2015-09-26, 04:51
Location: U.S.

Re: browser.visited_color not working

Post by coffeebreak » 2017-12-15, 11:00

Did you set the browser to Always Override the colors specified by the page with your own selections?
link-colors.png
BTW, You might find that the "Always" setting changes more than merely the visited link color - it affects colors for other things as well. If you want to change just the color of visited links, it could probably be done via some tweak in userChrome.css (or using Stylish). Or by using any of several extensions designed to alter the appearance of web pages.

coffeebreak
Moon Magic practitioner
Moon Magic practitioner
Posts: 2586
Joined: 2015-09-26, 04:51
Location: U.S.

Re: browser.visited_color not working

Post by coffeebreak » 2017-12-15, 13:23

coffeebreak wrote:...via some tweak in userChrome.css

Correcting myself: I believe this should be userContent.css.

User avatar
billmcct
Keeps coming back
Keeps coming back
Posts: 834
Joined: 2012-09-04, 15:19
Location: Atlanta Georgia USA

Re: browser.visited_color not working

Post by billmcct » 2017-12-15, 14:46

coffeebreak is correct it's "userContent.css" and resides in the "Chrome" folder in your profile directory.
PM AFAIK does not create this folder on install anymore. Look in the profile, if there is not a Chrome folder create one. In that folder create a text file named "userContent.css".
In the userContent.css file paste this

Code: Select all

/* Change Visited Links to Red */

a:visited {
color: #ff0000 ! important;

}

a:link {
color: #ff0000 ! important:

}

A:visited { color: #ff0000 ! important }
This will change visited link to Red. If you wish another color check here to find the Hex number of the color you want.
http://www.color-hex.com/color-palettes/popular.php

Bill
BACKUP - BACKUP - BACKUP
Three things in life are certain; Birth, Death and Loss of data.
You have no control over the first two, but you DO control the last.

Happy Pale Moon 29.x.x 32bit user on Win 7 x64 and Win 8.1 x64.

But hey y'all, I still ride everywhere with my "Chumpy Bear."

Locked