Visited Links Color Isssues in Motif Theme
-
Using the Motif theme, we had changed the CSS so link colors would stay the same, no matter if the link was visited or not. We want all the links to be burgundy, but previously visited links were showing up as gray. This was the CSS used and solved this:
a:visited, a:active, a:focus { color: #822432; }However, it’s now changing the menu links to make the visited links burgundy, instead of all white. We want the menu links to stay white. Can anyone help with this?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi there!
Try this:
a:visited, a:active, a:focus { color: #822432 !important; }Let me know if that does it for you.
Good luck!
-
-
Hi there, if you wish to target only the links in the content area, the following targets only those in the content area.
.site-content a:visited, .site-content a:active, .site-content a:focus { color: #822432 !important; } -
-
- The topic ‘Visited Links Color Isssues in Motif Theme’ is closed to new replies.