Disable tooltips when hovering over an icon?

Is there a way to disable (with css?) the tooltips when you hover over an icon? The icons tell me all I need to know. For example: The pin icon displays the text “pin”.

Try this:

.tooltip {
  display: none !important;
}
2 Likes

Ah duh, thanks alot, I’m new to all this!

1 Like

No problem!

Here’s a good guide on getting started with CSS for more customization: Getting comfortable with Obsidian CSS

2 Likes