forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: Colliope on February 09, 2005, 10:55:37 pm

Title: breadcrumb - a & v link?
Post by: Colliope on February 09, 2005, 10:55:37 pm
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:

Code: [Select]
.statlink
     { color: #9932CC; }

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

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

I tried adding

Code: [Select]
.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
Title: Re: breadcrumb - a & v link?
Post by: snork13 on February 09, 2005, 11:06:04 pm
try A:visited  ;)


and this web site explains it well IMO

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

snork13
Title: Re: breadcrumb - a & v link?
Post by: Colliope on February 10, 2005, 12:22:36 am
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