Hi there,
The skiplink is something that is used for accessibility, so you do not want to remove it, but hiding it is fine. Add this CSS to the main stylesheet of your site:
.skiplink {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
This will visually hide the link but it will still show up for screen readers and such.
Best,
-Elijah