Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / change the hover and visited color

change the hover and visited color

Locked

Views: 1,277

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
28 Jul 2007, 11:56 PM
#1
shay_nissim avatar

shay_nissim

New Zenner

Join Date:
Jul 2007
Posts:
22
Plugin Contributions:
0

change the hover and visited color

where in css i need to change the hover and visited link from one color to enother??

29 Jul 2007, 12:07 AM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: change the hover and visited color

Basic answer is

a img {border: none; }

a:link, #navEZPagesTOC ul li a {
	color: #3300FF;
	text-decoration: none;
	}
 
a:visited {
	color: #3300FF;
	text-decoration: none;
	}

a:hover, #navEZPagesTOC ul li a:hover, #navMain ul li a:hover, #navSupp ul li a:hover, #navCatTabs ul li a:hover {
	color: #FF0000;
	}

a:active {
	color: #0000FF;
	}