I want the post title link hover colour to be different depending on what category that post is in.
I achieve this in GeneratePress at the moment with this code
.generate-columns-container .category-dogs h2.entry-title a:hover {
color: #00bca2;
}
.generate-columns-container .category-cats h2.entry-title a:hover {
color: #794fff;
}
.generate-columns-container .category-birds h2.entry-title a:hover {
color: #4a66f7;
}
This works great on my category archives.
However I use WPSP Pro on the front page and now I need the code for the WPSP to do the same
Please advise how I can do this
Thank you