Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Support Elvin

    (@ejcabquina)

    Hi there,

    you can change the color with this CSS:

    h2.wp-show-posts-entry-title a {
        color: pink;
    }

    And if you want to change the hover color as well, try this one:

    h2.wp-show-posts-entry-title a:hover {
        color: red;
    }
    Thread Starter T Gabriel

    (@globeboss)

    please were do i insert them exactly, cause i inserted them in the simple css and it didnt work.

    Plugin Support Elvin

    (@ejcabquina)

    Can you try and see what happens if you add !important to the value?

    Example:

    h2.wp-show-posts-entry-title a {
        color: pink !important;
    }
    
    h2.wp-show-posts-entry-title a:hover {
        color: red !important;
    }
    Thread Starter T Gabriel

    (@globeboss)

    NO not working, could it be because i disabled image and Title links.. could it be the reasonn???

    Plugin Support Elvin

    (@ejcabquina)

    NO not working, could it be because i disabled image and Title links.. could it be the reasonn???

    Ah that’s likely it. Disabling links means there’s no <a> tag.

    In that case, try this instead:

    h2.wp-show-posts-entry-title {
        color: pink !important;
    }
    
    h2.wp-show-posts-entry-title:hover {
        color: red !important;
    }

    The CSS with :hover is optional. Since it’s not a link anymore, it may be better to not add it. ??

    Thread Starter T Gabriel

    (@globeboss)

    No – not working

    Plugin Support Elvin

    (@ejcabquina)

    Can you link us to the page w/ the WPSP list you’re trying to change title color on?

    To check or any CSS conflict.

    Also, can you share how you’re adding the CSS?

    Thread Starter T Gabriel

    (@globeboss)

    staging.globeboss.com

    i just inserted the css into the the simple css plugin terminal

    Plugin Support Elvin

    (@ejcabquina)

    Ah I see now. You’ve changed the default h2 to h4.

    Try this instead:

    .wp-show-posts-entry-title {
        color: pink !important;
    }
    
    .wp-show-posts-entry-title:hover {
        color: red !important;
    }
Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘please i need to change the title color’ is closed to new replies.