Archived topic
change appearance of categories in sidebar in woocommerce
3 replies · Started by CRISTO on December 10, 2019
Not sure if I worded that correctly...on all my product pages I show categories in the right sidebar. I would like them to either change color or highligh or become italic when someone hovers over them. Right now they do not....they work but it is not quite apparent which category you are hovering over.
Not sure if this is a woocommerce thing or a GP thing.
Hi there,
in Customizer > Colors > Sidebar Widgets you can set the Link Hover color - this should apply to those links.
If you want them styled differently, like make them italic on hover, then you could add this CSS:
.widget ul li.cat-item:hover a {
font-style: italic;
}
Fantastic...was right in front of me....but the css you gave me to italicize the links was great.
Glad to be of help