Need to set color of <h1> link
https://stackoverflow.com/questions/244665
OTHER TIPS
if you want the colour to be the same for unvisited links you'll need to add a specific selector for that as well
.nav-left h1 a:link, .nav-left h1 a:visited {
color:#055830;
}
If you want them the same, you must be specific:
.nav-left h1 a, a:visited
is not the same as:
.nav-left h1 a, .nav-left h1 a:visited
.nav-left h1 a {
color: #055830;
}
You don't need to add a:visited if it is the same color.
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow