I have some text which is underlined but text-decoration:none won't remove text underline.
You can see that on the landing page of my website [here]<michelgrolet.fr>. You will find it easily : it's the only underlined text on the landing page.
Change Your Existing Code In style.css
On 182th Line.
.game-link h5, .game-link p {
text-decoration: none !important;
text-decoration-color: var(--white-l);
}
To ->>
.game-link h5, .game-link p {
text-decoration: inherit;
text-decoration-color: var(--white-l);
}
Add Css -
a.game-link {
text-decoration: none;
}