Archived topic
Marketer static homepage with WP show
5 replies · Started by Matt on November 26, 2020
Hi,
I'm running the Marketer theme using a static homepage along with the WP show plugin so it features my blog posts. Could you please let me know how to change the blog titles from blue to black?
Site link in the private section.
Thanks in advance.
Matt
Hi,
I see you're using WP Show Posts. Are you using WPSP Pro version as well?
If so, you can set the Title color and hover color within the WPSP setting found on its Content tab.
If you're not using the Pro version, you can try this CSS:
h2.wp-show-posts-entry-title a {
color: [text color value here];
}
h2.wp-show-posts-entry-title a:hover {
color: [hover text color value here];
}
Simply change the color value to your preference.
Hi Elvin, I'm just using the free version, so I'll try the code. Could I just confirm where I'm putting the code.
Customise and then additional CSS? There is already code in there, so does it matter where about I paste that code?
Cheers
Customise and then additional CSS? There is already code in there, so does it matter where about I paste that code?
Yeah that works. Place the code on the bottom.
Here are some alternative to add CSS - https://docs.generatepress.com/article/adding-css/
Hi Elvin,
I've tried entering that code and using simple css pluggin, but it hasn't worked.
Here is the code I'm using:
h2.wp-show-posts-entry-title a {
color: [#000000];
}
h2.wp-show-posts-entry-title a:hover {
color: [#0000EE];
}
Any ideas?
Thanks
Hi there,
the [ square brackets ] are not required. Try:
h2.wp-show-posts-entry-title a {
color: #000000;
}
h2.wp-show-posts-entry-title a:hover {
color: #0000EE;
}