up vote 1 down vote favorite
share [g+] share [fb]

This is the css for setting the color for h1 text that is linked:

.nav-left h1 a, a:visited{
    color:#055830;
}

<div class="nav-left">
    <h1><a href="/index.php/housing/">Housing</a></h1>
</div>

It does not look like it is working appropriately, any help is appreciated.

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

What about:

.nav-left h1 a:visited{
    color:#055830;
}
link|improve this answer
feedback

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

link|improve this answer
feedback

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;
}
link|improve this answer
I think this is the best answer. It seems to better answer the question. – allesklar Oct 29 '08 at 12:15
feedback
.nav-left h1 a {
    color: #055830;
}

You don't need to add a:visited if it is the same color.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.