I’m using the Avery template and have a question on how to change the colors.
1. The homepage ‘show posts section’, the links are pink and I would prefer them to be black without changing the whole site link color.
2. And the Post title is a greyish colour and I would prefer it to be black. I’ve changed all the headings to black but can’t seem to change the post title.
the Pro version of WP Show Posts allows you to change colors etc.
Alternatively try this CSS:
/* Title color */
.wp-show-posts .wp-show-posts-entry-title a {
color: #666666;
}
/* Title hover color */
.wp-show-posts .wp-show-posts-entry-title a:hover {
color: #555555;
}
/* Post meta color */
.inside-article .wp-show-posts-meta a,
.inside-article .wp-show-posts-meta a:visited {
color: #666666;
}
/* Post meta hover color */
.inside-article .wp-show-posts-meta a:hover {
color: #555555;
}