Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS styling a link… Re: styling a link…

#97245
Senff
Participant

That’s because you didn’t specifically only styled the “regular” link status (a:link), which will not apply to the “visited” status (a:visited). You can fix that by doing this:

a:link {
// all your regular (NOT visited) link styles go here
}

a:visited {
// all your styles for VISITED links go here
}

Or you can style all types of links (not visited, visited, hover, active) at once by just using:

a {
// all your link styles go here
}