Visited links don't have the expected color
-
My homepage is
and it is based on a child theme of the Twenty Twelve Theme. Until recently, possibly until I updated WordPress and the associated themes, links on my homepage all had the same blue color, whether they had been clicked or not. But now the clicked (or visited) links have a grey color, and I don’t understand why.
The style.css file of my child theme looks as shown below, and if I change the settings for “a:link” and for “a:hover”, the appearance of the links changes – but nothing in this file seems to change the way visited links appears.
So are the visited links being overwritten somewhere? If yes, where? Or is there another explanation?
Thanks in advance for the help.
/* Theme Name: Twenty Twelve Child Theme URI: https://jakobrdl.dk/ Description: Child theme for the Twenty Twelve theme Author: Jakob Rosenkrantz de Lasson Author URI: https://jakobrdl.dk/ Template: twentytwelve Version: 1.0.0 */ @import url("../twentytwelve/style.css"); a:link { color: rgb(10,57,165); text-decoration: none; } a:visited { color: rgb(10,57,165); text-decoration: none; } a:hover { color: rgb(10,57,165); border-bottom: 1px dotted; } a:active { color: rgb(10,57,165); border-style: none; text-decoration: none; } <style type="text/css"> #wrap { width:100%; margin:0 auto; } #left_col { float:left; width:70%; } #cen_col { float:left; width:10%; } #right_col { float:right; width:20%; } </style>
- The topic ‘Visited links don't have the expected color’ is closed to new replies.