[Resolved] How do I keep heading and content link colors separated?

Home Forums Support [Resolved] How do I keep heading and content link colors separated?

Home Forums Support How do I keep heading and content link colors separated?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1979689
    Erman

    Hi all,

    I’m currently trying to change the color of my headings and paragraph links on http://www.alltomhusdjur.com.

    I would like the h2.wp-show-posts-entry-title to be default text color, and the links in my post paragraphs to be of a certain blue color for highlighting purposes.

    However, whenever I change the link color in the content or body part of the color section in the customizer, it changes the color of both the headings and the paragraph links.

    How can I make sure that only the paragraph links colors are changed?

    Thank you!

    #1979797
    Elvin
    Staff
    Customer Support

    Hi Erman,

    You’ll need a custom CSS approach to this.

    Leave h2.wp-show-posts-entry-title a as it is if you wish to keep its current color.

    As for the paragraph, try this CSS:

    .entry-content p a {
    color: your blue color here;
    }
    /* paragraph links hover color*/
    .entry-content p a:hover {
    color: hover color here;
    }
    
    #1981785
    Erman

    Hi Elvin,

    Thank you so much!

    That worked perfectly ๐Ÿ™‚

    Appreciate your help once again!

    #1981786
    Elvin
    Staff
    Customer Support

    No problem. Glad to be of any help. ๐Ÿ˜€

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.