Try this in your child theme:
.widget a:hover, .widget a:focus, .widget a:active {
text-decoration: none;
}
WPyogi, that’s not the change I need. That changes the grey links. I want the blue to change.
I have tried this code but the hover fails to respond.
.widget-title a:hover, .widget-title a:focus, .widget-title a:active {
text-decoration: none;
}
Any other suggestions?
Thanks
For those in my similar situation, this was related to my fix.
.textwidget a:hover, .textwidget a:focus, .textwidget a:active {
text-decoration: none!Important;
}
Hope this helps someone.