How do I remove the underline from footnote?
I’ve tried various methods, but the only way is to modify the tag, which also affects other links.
See attached image.
The comunity will be able to help you if you at least will give a link to this example. Overall I think the override of CSS styles should solve the problem, but to know which styles you have we’ll need to see your blog
1 Like
Sorry, you’re right… better to link to the article where I used the footnote.
The screenshot is related to an article that has not yet been published.
According to what I see you could try to inject this style
a[href^="#nota"] {
text-decoration: none;
}
To apply it for the entire website please inject it to the header as this:
<style>
a[href^="#nota"] {
text-decoration: none;
}
</style>
You should be able to do it via Settings → Code injection → Open → Site header
3 Likes
@vlavrynovych
Perfect, thank you for your time!!!