Page 1 of 1

a:hover state over information and category links

Posted: Sun Jan 25, 2009 5:50 am
by Emmanuel
Hi everyone,
How can I add a a:hover state to the links in the category and information menu?

I added this bit of css to the default.css file but it didn't work?

Code: Select all

.categories a:hover {
	text-decoration:underline;
}

.information a:hover{
    text-decoration:underline;
}
I think there is something else that is having precedence over this styling??

But I can't find much???

you can see the site at: http://shop.highwoodhealth.org

Re: a:hover state over information and category links

Posted: Sun Jan 25, 2009 7:17 am
by Qphoria

Code: Select all

.box .category a:hover {
	text-decoration: underline;
}

box .information a:hover{
    text-decoration:underline;
}

Re: a:hover state over information and category links

Posted: Sun Jan 25, 2009 7:20 am
by Emmanuel
AHA!!!  ;D

that works great!!

Thanks so much for your wonderful help and support!!!