Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / can't get top categories to hover right

can't get top categories to hover right

Locked

Views: 754

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
6 Apr 2010, 6:06 AM
#1
jenpen avatar

jenpen

Zen Follower

Join Date:
Sep 2007
Location:
Far South Coast, NSW, Australia
Posts:
427
Plugin Contributions:
0

can't get top categories to hover right

http://www.consciouslightproductions.com/
Started out with Dezina Advent template but have made so many changes it's pretty unrecognisable now. All's well except when hovering over the two top categories in the Categories sidebox they don't change colour. When using Firefox webdeveloper CSS tool it indicates that they should go from blue (#649fed) to yellow (#edc864). What could be wrong? TIA...

6 Apr 2010, 6:56 AM
#2
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: can't get top categories to hover right

They work for me (in Firefox).

6 Apr 2010, 7:07 AM
#3
jenpen avatar

jenpen

Zen Follower

Join Date:
Sep 2007
Location:
Far South Coast, NSW, Australia
Posts:
427
Plugin Contributions:
0

Re: can't get top categories to hover right

Thanks Glenn but what about if you click on one of them then go back to the home page - do they hover OK then? I think this is when it stops working. It's fine in IE. Jen

6 Apr 2010, 7:21 AM
#4
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: can't get top categories to hover right

You have some messed-up CSS, with redundant and out-of-order rules.```
/* categories box parent and child categories /
/
Dezina entered next for hover in category box links*/
A.category-top, A.category-top:hover {
color: #EDC864;
text-decoration: none;
}
A.category-top, A.category-top:visited {
color: #649FED;
text-decoration: none;
}
A.category-links, A.category-links:visited {
color: #649FED;
text-decoration: none;
}
A.category-links {
color: #649FED;
text-decoration: none;
}
/* Dezina entered next for hover in bottom category box links*/
A.category-links:hover {
color: #EDC864;
text-decoration: none;
}

Try this```
/* categories box parent and child categories */
/* Dezina entered next for hover in category box links*/
A.category-top, A.category-top:visited {
	color: #649FED;
	text-decoration: none;
	}
A.category-top:hover {
	color: #EDC864;
	}
A.category-links, A.category-links:visited {
	color: #649FED;
	text-decoration: none;
	}
/* Dezina entered next for hover in bottom category box links*/	
A.category-links:hover {
	color: #EDC864;
	}	
6 Apr 2010, 8:02 AM
#5
jenpen avatar

jenpen

Zen Follower

Join Date:
Sep 2007
Location:
Far South Coast, NSW, Australia
Posts:
427
Plugin Contributions:
0

Re: can't get top categories to hover right

Thanks so much! :D