How to remove the "Open Link" button in a link hover over

Things I have tried

I included the following CSS snippet

div.tooltip {
display: none !important;
visibility: hidden;
}

This sadly only removed the little note (speech bubble) “Open Link” when hovering over the Open Link button.

What I’m trying to do

When hovering over a link, there is a little button in the upper right corner of the hover screen that, if clicked, leads you to the linked page. I want to remove this button, as i can get to the page by simply clicking the link. That makes the button a bit redundant.

Thank you in advance :slight_smile:

You can use this:

	.markdown-embed-link {
		display: none;
	}

EDIT: I would advise you to use this instead:

	.markdown-embed-link {
		opacity: 0;
	}
	.markdown-embed-link:hover {
		opacity: 1;
	}

This way if you hover the corner, where the button normally is, it will appear.
Sometimes you need that link, if you have something embedded in a page. Just for easy access to that note.

works! Thanks :))

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.