Archived topic
Text underline does not work for lists
3 replies · Started by Norman on January 25, 2021
Viewing posts 1–4 of 4
I currently have the following css to add an underline to links within articles
}
.inside-article p a:link,
.inside-article p a:hover,
.inside-article p a:active,
.inside-article p a:visited {
text-decoration: underline;
}
however, it does not work for lists. How do I change that?
Hi there,
you can use this CSS:
.inside-article li a {
text-decoration: underline;
}
It will target any links in any list within the content.
thx that fixed it! :)
You're welcome
This archived topic is closed to new replies.