The titles in my webpage are also a link that anchor to themselves, for accessibility reasons, I cannot really change that.
However, most people would like something in the likeness of Title
with only the being a clickable link.
So my html looks like
<h2 id="myid"><a href="#myid">Title</a></h2>
And my CSS (so far):
h2 a::before { content: " "; }
However, I am far from having the wizardry to know what to do next, I tried looking at this question but I don't really know how to "save" the ::before
part from being affected.