Archived topic
Text colours for WP Show Posts sidebar list
3 replies · Started by Reena on July 15, 2020
I'm using child theme Dispatch.
I have a WP Show Posts set up on my sidebar which displays three popular posts.
On the homepage and category archives, the headings appear in white text which I like. However, when you click on a specific blog post, this heading text on the sidebar changes to red.
I've looked through the Customiser but can't locate where it is picking up the red text.
Thanks,
Reena
Hi there,
I think the custom CSS that is used gets a little muddled with the visited link color.
Try adding this CSS to stop this from happening:
.wpsp-card a:visited {
color: #fff !important;
}
Thanks. That fixed it. The text is now displaying in white.
Glad to hear that