Archived topic
Disable underlining link in site title
3 replies · Started by Eva on March 15, 2021
Viewing posts 1–4 of 4
Hi!
I wanted underlined links on a site I am working on, so I have used:
p a:link, p a:hover, p a:active, p a:visited {
text-decoration: none;
border-bottom: 1px dotted;
}
It works fine, but now also the site title is underlined, and I can't find where to disable this. Any suggestions?
Thank you!!
Eva
Hi there,
try this CSS - it will only apply to links with the #page content:
#page p a:link, #page p a:hover, #page p a:active, #page p a:visited {
text-decoration: none;
border-bottom: 1px dotted;
}
Thank you so much David! Problem solved :-)
You're welcome
This archived topic is closed to new replies.