Site logo

Archived topic

Underline links in Lists

1 reply · Started by Kieran on September 18, 2022

Viewing posts 1–2 of 2

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

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;
}
This archived topic is closed to new replies.