I have tried every suggested approach and I cannot get rid of the blue underline of the links of my Outlook signature on Gmail desktop (it's fine on Gmail Android app).
I tried to apply text-decoration: none !important
to all links, on the <a>
tag and on the <span>
tag. I also tried to overwrite Gmail (using class .ii).
I tried each of them separately but none of them work, I always get a blue underline no matter what I do.
a:link {
text-decoration: none!important;
}
.ii a[href] {
text-decoration: none!important;
}
<a href="http://www.google.com" style="color:red; text-decoration:none">
<span style="color:red; text-decoration:none";>text</span>
</a>
Do you have any idea how to solve this ?