Archived topic
Underscore links in Lists and Headline
5 replies · Started by Christian on July 25, 2022
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,
Any chance you can link us to the page in question?
You can use the private information field:
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
Hi Leo,
thanks for getting back to me. Here is an example of linked list elements (WP Space, Raidboxes, etc): https://lsww.de/shopsysteme/#Layout_anpassen_mit_WooCommerce
And here is one with a linked headline (Jimdo): https://lsww.de/homepage-baukasten/#1_Jimdo
Best regards
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;
}