[Resolved] Change links color in post/page

Home Forums Support [Resolved] Change links color in post/page

Home Forums Support Change links color in post/page

Viewing 2 posts - 16 through 17 (of 17 total)
  • Author
    Posts
  • #1994570
    Paul

    Hi David,
    thanks for support! I figured out the solution in the meanwhile with Custom CSS. For others who may face this problem, this was how I did it.

    1.) I changed the way text-links are decorated in posts (before that, as I wrote in my previous post, I had changed the colour of links, but then I chose a different way of highlighting links with the underline)

    .single-post .entry-content p a, .single-post .entry-content li a {
    text-decoration: underline 2px;
    text-decoration-color: #f9be58;
    text-underline-position: under;
    }

    2.) Because I didn’t want the headings from Posts displayed with the WP Show Posts plugin to be affected by the changes from 1.), I “hid” the underline with this CSS:

    .wp-show-posts-entry-title a
    {
    text-decoration: none !important;
    }


    As I’m not a pro with CSS, I hope that this was a meaningful way to do it.

    If not, I’ll open up a new topic for this.

    Best
    Paul

    #1994894
    David
    Staff
    Customer Support

    Glad to hear you found a solution!

Viewing 2 posts - 16 through 17 (of 17 total)
  • You must be logged in to reply to this topic.