Visited links color on Youtube

User Help for Mozilla Firefox
Post Reply
Kenosis
Posts: 77
Joined: November 11th, 2011, 5:43 am

Visited links color on Youtube

Post by Kenosis »

Hello,

I'm looking for a way to change the color of the links I already visited (videos & channels) on Youtube without having to install and addon/extension.

I set toolkit.legacyUserProfileCustomizations.stylesheets to true.
I created the chrome folder with a userContent.css
I put the following code into the .css

Code: Select all

@-moz-document domain(youtube.com) {

a:visited { color: purple!important;

 }
}
However Youtube completely ignores it. The links on Youtube stay white, even after clicking/visiting them.

What I'm doing wrong here?
User avatar
BobbyPhoenix
Posts: 280
Joined: April 24th, 2014, 5:58 am

Re: Visited links color on Youtube

Post by BobbyPhoenix »

You can change the color with native Firefox settings. Under Settings, General, Colors there is an option to change link highlight colors.
Do, or do not. There is no try.
Kenosis
Posts: 77
Joined: November 11th, 2011, 5:43 am

Re: Visited links color on Youtube

Post by Kenosis »

Thanks for you reply but I never understood how the colors setting there helps anyone. 1. Websites ignore it unless I set "Override the colors..." to always. 2. It then also changes their Background and Text color which leads to horrible looking websites and 3. I do not even want to change it for all Websites but for Youtube only.
lenny2
Posts: 68
Joined: June 8th, 2022, 3:10 am

Re: Visited links color on Youtube

Post by lenny2 »

Kenosis wrote:Hello,
I'm looking for a way to change the color of the links I already visited (videos & channels) on Youtube without having to install and addon/extension.

Code: Select all

/* userContent.css Tweak Firefox */
/* !!! Put code in to userContent.css !!! */
/* Highlighting visited and unvisited links */
:any-link:visited,
:any-link:not(#thumbnail).yt-simple-endpoint:visited * {
    color: #ff4a4a !important; /* set here you own color */
}
Kenosis
Posts: 77
Joined: November 11th, 2011, 5:43 am

Re: Visited links color on Youtube

Post by Kenosis »

Yay, that works. Thank you very much lenny2.
Post Reply