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

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

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