When you hover category titles on the main screen… I want to change the color of the hover, but for weeks I have not been able to find the right CSS code to do so.
Any thoughts?
When you hover category titles on the main screen… I want to change the color of the hover, but for weeks I have not been able to find the right CSS code to do so.
Any thoughts?
It’s hard to know for sure what you mean by “category titles on the main screen,” but give this a shot:
.category-list .category-name:hover {
color: blue;
}
If that’s not what you are looking for, a screenshot showing what you are trying to target would be helpful ![]()
Ah yeah, the box styling uses different classes. Thanks for including the screenshot. You need to get pretty specific with the selector:
.category-boxes-with-topics .category-box-heading a:hover {
color: blue;
}
thank you! that solved it