Archived topic
Changer hover links colors
5 replies · Started by steven on July 14, 2022
Hi there,
i woudl like change the hover link colors for the the block (wp-block-latest-posts__lis)
Thanks you
Hi there,
Any chance you can link us to the page in question?
You can use the private information field:
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
yes !
Hi Steven,
You can modify link colors through Appearance > Customize > Colors > Content > Link.
If you would like to change the color of WP Latest posts links uniquely, here’s a CSS you may try adding through Customize > Additional CSS:
ul.wp-block-latest-posts a.wp-block-latest-posts__post-title {
color: #00aa55aa;
}
Kindly let us know how it goes.
Hi Fernando, thanks for your message, but i want to change color hover.
I see. Try this instead:
ul.wp-block-latest-posts a.wp-block-latest-posts__post-title:hover {
color: #00aa55aa;
}