Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Breadcrumb 'visited' color misery

Breadcrumb 'visited' color misery

Locked

Views: 1,359

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
24 Mar 2007, 11:25 AM
#1
kevin_a avatar

kevin_a

Zen Follower

Join Date:
Mar 2007
Location:
Worcester UK
Posts:
142
Plugin Contributions:
0

Breadcrumb 'visited' color misery

I want to change the 'a:visited' color just on the breadcrumb line.

It seems to be tied to the rest of the 'visited' colours, giving a black color on dark background, which is virtually unreadable.
ive spent a few hours altering the css to isolate this element, to no avail.

Do I need to add a line to the css or something.

thanks

24 Mar 2007, 11:26 AM
#2
kevin_a avatar

kevin_a

Zen Follower

Join Date:
Mar 2007
Location:
Worcester UK
Posts:
142
Plugin Contributions:
0

Re: Breadcrumb 'visited' color misery

PS the site url is
http://www.pennyfarthinggallery.co.uk/shop/
to take a look.

24 Mar 2007, 12:03 PM
#3
kevin_a avatar

kevin_a

Zen Follower

Join Date:
Mar 2007
Location:
Worcester UK
Posts:
142
Plugin Contributions:
0

Re: Breadcrumb 'visited' color misery

Please ignore this post (I assumed it was a general customising issue, but of course..I should be over in stylesheet location.
Sorry to have misposted.

25 Mar 2007, 3:32 AM
#4
afo avatar

afo

Totally Zenned

Join Date:
Aug 2004
Location:
New York City
Posts:
6,800
Plugin Contributions:
0

Re: Breadcrumb 'visited' color misery

No problem. You do have to change it in the stylesheet. Leave your current a:hover setting in place and add the following (change the color/text decoration to whatever fits your site.

#navBreadCrumb a:link {
	color: #FF0000;
	text-decoration: none;
	}


#navBreadCrumb a:visited {
	color: #0000FF;
	text-decoration: none;
	}

#navBreadCrumb a:hover {
	color: #FF0000;
	text-decoration: none;
	}

I put it in my stylesheet after the #navBreadCrumb declaration, but it can go anywhere.

25 Mar 2007, 8:57 PM
#5
kevin_a avatar

kevin_a

Zen Follower

Join Date:
Mar 2007
Location:
Worcester UK
Posts:
142
Plugin Contributions:
0

Re: Breadcrumb 'visited' color misery

thanks afo.. I got there in the end...Cant wait for the book to arrive!
Im now struggling with the 'white space' demon. ho hum
cheers

26 Mar 2007, 3:17 AM
#6
afo avatar

afo

Totally Zenned

Join Date:
Aug 2004
Location:
New York City
Posts:
6,800
Plugin Contributions:
0

Re: Breadcrumb 'visited' color misery

kevin_a:

thanks afo.. I got there in the end...Cant wait for the book to arrive!
Im now struggling with the 'white space' demon. ho hum
cheers

The breadcrumb issue was one of simply figuring what to separate out from where. I did it for a prototype, so I knew what you were trying to do.

I see Merlin answered your "white space" post. He's prettu reliable aout such issues.