Site logo

[Support request] Underline links in Lists

Home Forums Support [Support request] Underline links in Lists

Home Forums Support Underline links in Lists

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2346291
    Kieran

    Hello,

    I’m currently using a code I found on the forums to create a thick colored underline on links in text. It only seems to work on paragraph text and does not show up on bulleted lists.

    The CSS I’m using is:

    }
    .entry-content p a:not(:hover) {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 4px;
    text-decoration-color: blue;
    }

    I’ve tried altering it based on what I see in other threads on here but can’t get it to work. Any suggestions?

    Cheers,
    Kieran

    #2346507
    David
    Staff
    Customer Support

    Try this CSS:

    .entry-content :is(p, li) a:not(:hover) {
        text-decoration: underline;
        text-underline-offset: 5px;
        text-decoration-thickness: 4px;
        text-decoration-color: blue;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.