Hey all. I want to make it so that my external links and interwiki links stay the same color regardless of whether they've been clicked on or not.
I've looked through Help:Link color and this old Support desk topic and came up with the following code to add to my MediaWiki:Common.css page. However, my visited links are still a different color. What am I missing?
.mw-body-content a:link { color: #0000FF; } /* normal unvisited links */ .mw-body-content a:link:active { color: #FF0000; } /* active links */ .mw-body-content a:link.new { color: #FF0000; } /* new links */ .mw-body-content a:link.interwiki { color: #3366BB; } /* interwiki links */ .mw-body-content a:link.external { color: #3366BB; } /* external links */ .mw-body-content a.interwiki:visited { color: #3366BB; } .mw-body-content a.external:visited { color: #3366BB; }