Hi there,
I’m having some issues with trying to get my site’s links to always be underlined. I have the following in my custom.css:
#main p a, a.more-link { /*changing link colors*/
font-weight: underline !important;
color: #444444 !important;
}
Hey kenhiltner!
It should be text-decoration: underline; like so.
#main p a, a.more-link { /*changing link colors*/
text-decoration: underline !important;
color: #444444 !important;
}
Regards,
Elliott
Many thanks Elliott!