Archived topic
Related to WP Show Posts plugin
11 replies · Started by subham sarkar on May 13, 2018
Hi,
I just install WP Show Posts plugin and try to build post list but the post title color is showing blue which is the link color but I want it Black can you please let me know how to do this and I want the category listed bold in blue like this one https://morningchores.com/
and one more thing I want the highlight to all my links in the content like this https://morningchores.com/salad-garden/ can you please help
Hi Subham!
Please let me tell you that the present forum support is dedicated to GeneratePress WordPress theme. If you have a Pro version of this plugin, then it's easy to get help in the official website https://wpshowposts.com/, otherwise, you can try it in the support forum on https://wordpress.org/support/plugin/wp-show-posts
You can try adding this couple of lines on in your Customizer CSS editor in the WordPress dashboard of your website located in Appearance >> Customize. The following code use the black color in your title links
.wp-show-posts-entry-title a {
color: #000 !Important;
}
I hope it will help you with the issue :)
This works but I need blue on hover and I add doted links but the high lights show everywhere can you please let me know how to set only in the blog post only http://prntscr.com/jhgdxz http://prntscr.com/jhge5v
If you are using for example Elementor builder or another builder, you can add a custom CSS class to the column when you are puting your WP Show Posts plugin shortcode, and apply all the needed styles onto your links. This is an example with your wanted decoration
.myblog .wp-show-posts-entry-title a {
color: #000 !important;
text-decoration: none;
}
.myblog .wp-show-posts-entry-title a:hover {
color: #1e73be important;
text-decoration: dashed;
}
If you don't have enough knowledges about editing and styling with CSS, please contact your theme developer to ask him which will be the best method to achieve this.
sorry this is not work
Can you try this instead:
.blog .wp-show-posts-entry-title a {
color: #000 !important;
text-decoration: none;
}
.blog .wp-show-posts-entry-title a:hover {
color: #1e73be important;
text-decoration: dashed;
}
If not can you link me to the page/post where this should be applied?
no its still same http://prntscr.com/jhmxy9
and this is too http://prntscr.com/jhn022
What I want a link underline dots only in content, not on title or meta also I want my headline in black color with hover or blue in the post list which will build with the show post plugin like this https://morningchores.com/
Hi Subham,
For the wp show posts entry header color you just need this:
.wp-show-posts-entry-title a {
color: #000 !important;
}
.wp-show-posts-entry-title a:hover {
color: #1e73be important;
}
You can try this for the text-decoration, requires webkit for safari and it is still in Candidate Release so browser support is not 100%:
.inside-article a,
.inside-article a:visited {
text-decoration: underline dotted;
-webkit-text-decoration: underline dotted;
}
it still showing same http://prntscr.com/jhto7d
It will be too easy to include your website blog url on a reply, that will allow us to help you quickly :)
Can you edit the original URL and add in the page or post we should be looking at?
That's the field people usually use when they create the topic.
Let me know :)