Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #186324

    Branko K
    Participant

    Hi,

    I set my heading to a blue color, and my link hover color to a green.

    My headings display correctly, and links work well. But when I make a heading into a link, the hover color is red. I believe that is the link hover color set in the theme by default.

    The problem occurs on this page that I’m making – http://brankokral.net/newsite/stem-cell-therapy. All h3’s are that way, e.g. Stem Cells for Joints and Soft Tissue.

    I’m running WP 4.0, X version 3.1.1.

    Thank you very much for your time,
    Branko

    #186467

    Branko K
    Participant

    Update: I used custom CSS to set hover color of that particular element. But maybe it’s good feedback for you – personally I’d love for my customizer link hover color to work for all links, even those in headings.
    Best,
    Branko

    #186644

    Christian
    Moderator

    Glad you’ve sorted it out Branko.

    #268471

    pnbnsv
    Participant

    Hi there,

    I have the same problem. Can you help with the CSS code to solve it?

    Thanks!

    #268577

    Prasant Rai
    Moderator

    Hello There,

    To change the link and hover color of blog posts kindly add this under Custom > CSS in the Customizer:

    h2.entry-title a {
        color: #ff1900 !important;
    }
    
    h2.entry-title a:hover {
        color: #1e73be !important;
    }

    Let us know how it goes and if that’s what you looking for.

    Thanks.

    #269118

    pnbnsv
    Participant

    Thanks for your reply.

    Actually it is not the blog post I want to change but the custom-headline link in a content-band of a page.

    #269239

    Prasant Rai
    Moderator

    Hello There,

    Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    Thanks.

    #269251

    Friech
    Moderator

    Hi There,

    Please try this code instead

    .x-content-band .h-custom-headline span:hover {
    	color: red;
    }

    Feel free to change the red value to any color. Provide us URL if this does not solve the issue.

    Hope it helps, Cheers!

    #269269

    pnbnsv
    Participant
    This reply has been marked as private.
    #269415

    Friech
    Moderator

    Hi There,

    Thanks for the clarification, add the code below to your custom css

    .x-promo .h-custom-headline span a:hover {
    	color: blue;
    }

    Hope it helps, Cheers!

    #269706

    pnbnsv
    Participant

    It is working now. Thanks a lot!

    #269716

    Thai
    Moderator

    You’re most welcome.