Archived topic
Show Post Link Color Not Working
5 replies · Started by Jonny on June 2, 2021
Hello,
On the home page of my site, I have two sections where I have used WP-show-posts; Popular Travel Guides & Recent Posts.
The text link color to these posts is displaying as blue even though I have changed the settings to display the text as black with no hover color either.
Some posts have black text displaying on the links to the posts whereas some have a blue color still...
I have cleared cache and still seems to not be working.
TIA.
WPSP's text color setting in general is known to be wonky/bugged.
We'll have to set the color through WPSP settings.
Example:
.wp-show-posts-entry-title a:hover {
color: red;
}
Thanks for your prompt response, Elvin!
Ahk, where exactly can I copy and paste that code into?
Here's how to add CSS - https://docs.generatepress.com/article/adding-css/
IF you wish to avoid adding extra plugins you can use the Additional CSS on the customizer settings.
Thank you, I have managed to change the hover color to black, however, I would like the original text color on the links to be black, not blue. How am I able to change this?
Try adding this CSS:
.wp-show-posts-entry-title a {
color: black;
}