Currently, I am facing an issue with the customization of a wordpress theme related to the styling of links within posts. Although I have tried to change the color and remove underlining using CSS rules, I am unsuccessful so far:
a, .entry-meta a, entry-content a {
color: #cc6633;
transition: color .5s linear;
text-decoration: none!important;
}
While the color changes successfully, the transition effect works fine, but the underlining persists in a different color and is not affected by the set color. Has anyone else encountered this problem before? Thank you.
edit////////////////////////////////////////////////////////
After removing the line:
text-decoration: none;
I came across this issue:
https://i.sstatic.net/FRB7d.png
The subtle difference caused by styles reveals that the underline returns, along with the presence of another dark grey underline. This suggests that two underlines are being applied to the same link simultaneously?