Site logo

Archived topic

Underscore links in Lists and Headline

5 replies · Started by Christian on July 25, 2022

Viewing posts 1–6 of 6

Hi there,

currently, only links in paragraph texts are underscored on my theme. How can I add an underscore to list items (li) and headlines (h2, h3 etc), too?

Thanks for helping.
Christian

Hi there,

try changing your undeline CSS to this:

.entry-content :is(p, li, h2, h3, h4, h5 ) a {
    border-bottom: 1px solid currentcolor;
}

.entry-content :is(p, li, h2, h3, h4, h5 ) a:hover {
    border-bottom: 1px dashed currentcolor;
}

Thanks David, that worked! However, I´ve decided to not apply it on h2, just h3 and below (+ list elements).

Change it to:

.entry-content :is(p, li, h3, h4, h5 ) a {
    border-bottom: 1px solid currentcolor;
}

.entry-content :is(p, li, h3, h4, h5 ) a:hover {
    border-bottom: 1px dashed currentcolor;
}
This archived topic is closed to new replies.