[Support request] Marketer static homepage with WP show

Home Forums Support [Support request] Marketer static homepage with WP show

Home Forums Support Marketer static homepage with WP show

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1550453
    Matt

    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

    #1550615
    Elvin
    Staff
    Customer Support

    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.

    #1550633
    Matt

    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

    #1550667
    Elvin
    Staff
    Customer Support

    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/

    #1555942
    Matt

    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

    #1556235
    David
    Staff
    Customer Support

    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;
    }
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.