• For some reason the “Thumbnail Comment Count” is coming out as white on white, on the featured image thumbnail.
    How can I change the colour?

    The page I need help with: [log in to see the link]

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hi @hashah3,

    You can fix this with some CSS. I’ve given you an example below, this will change the comment count and icon to black – which I have tested on your site and works.

    a.post-comments {
      color: black;
    }

    Please let us know how you get on!

    Kind Regards,
    Tim

    Thread Starter Himanshu Anil Shah

    (@hashah3)

    Many thanks Tim, this works fine, however when I move my mouse over it, it goes back to white on white.
    Any ideas?

    In fact this happens on most of my hot links, when I move the mouse on to them, then all disappear, suggesting white on white:
    – Like when I move on to the blog title
    – Like the leave a Reply button at the bottom of the blog, for a logged in member

    Thanks
    Himanshu

    Hi Himanshu @hashah3,

    So it does! To change the colour of all your hyperlinks to a different colour when you mouse over them please add the extra code below. This will change all links to blue when you hover over them.

    a:hover {
      color: blue;
    }

    You can change the colour to any colour that you like, this table may be helpful. You can of course use a hex colour code too.

    Please let me know how this goes.

    Kind Regards,
    Tim

    Thread Starter Himanshu Anil Shah

    (@hashah3)

    Thanks Tim, I added the CSS code, but the Comments count & Blog title still disappear, when I move the mouse on to them?

    Hi Himanshu,

    Ah, sorry, an override should sort that:

    a:hover {
      color: blue !important;
    }

    Kind Regards,
    Tim

    Thread Starter Himanshu Anil Shah

    (@hashah3)

    Thanks Tim, I used the following code:
    /* change colour of links with mouse on */
    a:hover {
    color: forestgreen !important;
    font-style: bold;
    }

    This now means any hyperlink turns green when I move the mouse of it.

    However on the home page, the blog title and comment count, both go white on white, when I place my mouse on then.

    Thread Starter Himanshu Anil Shah

    (@hashah3)

    Hi Tim, I just removed the “!important” and now something really weird happens.
    When I move the mouse in any part of the blog, the title goes white on white, but when I move my mouse on the title it goes green, and then back to white on white when I move the mouse of.
    When I move the mouse fully of the block, the blog title reappears in the original dark grey colour.
    Any ideas?

    Thread Starter Himanshu Anil Shah

    (@hashah3)

    Hi Tim, even more weird, now blog title, which is also a permalink, goes white on white when the mouse is in any area of the blog, but no longer goes forestgreen when you move the mouse over it.

    Thread Starter Himanshu Anil Shah

    (@hashah3)

    I managed to resolve this issue, byt changing the Theme’s Primary and Secondary Colours:
    From the WordPress desktop:
    – Appearance/Customize/Web Page Design/General Design Options : Font, Colour
    – Scroll down on the left hand side, change Primary & Secondary Colours

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Thumbnail Comment Count’ is closed to new replies.