Just noticing underlines on site links and colors on visited links are behaving differently. The same result on all of my Pro sites.
I’ve had to add:
a:link {
text-decoration: none !important;
}
a:visited {
text-decoration: none !important;
color: #cc3333 !important;
}
a:hover {
text-decoration: none !important;
}
a:active {
text-decoration: none !important;
}
Assuming this is a theme thing, was this intentional? Any other way to change it? Advice.


