breadcrumb - a & v link? breadcrumb - a & v link?
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

breadcrumb - a & v link?

Started by Colliope, February 09, 2005, 10:55:37 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Colliope

I want the breadcrumb links to match the link & visited link colors of my main menu.  I was successful in changing the link color and active link color to #9932CC by changing the following:

.statlink
    { color: #9932CC; }

.statlink a
    { color: #9932CC;
      text-decoration: none; }

.statlink a:hover
    { color: #9932CC;
      text-decoration: underline; }


I tried adding

.statlink v
    { color: #1E90FF;
      text-decoration: none; }


to change the visited link color but it had no effect. Is it possible to change the visited link color in breadcrumb, and if so, how do I do it?

Col

snork13

try A:visited  ;)


and this web site explains it well IMO

http://dbaron.org/css/1999/09/links

snork13

Colliope

Thanks. The  " a:visited " worked.  
I read the page you posted and tried redoing all 4 statlinks the way the author says is best

:link
:link:hover
:visited
:visited:hover

but that didn't work out as it eliminated the hovering all together, so i went back to the way it was.   :)

Col