Bases: Hide Toolbar (after updating to Obsidian 1.10.3)

On July 28, Arihen shared a very useful CSS snippet that hides the Bases toolbar in Obsidian. It has worked perfectly for me ever since. However, it seems to have stopped working after I updated to Obsidian 1.10.3 yesterday.

Does anyone know how to get this snippet working again?

Or, alternatively — are there any other ways to hide the Bases toolbar? It really makes the interface much cleaner, especially on mobile.

Thanks in advance!

1 Like

Don’t know which of ariehen’s snippets you’re using, but this method was and still is working:

:is(
	.bases-no-toolbar,
	.bases-embed[alt~="no-toolbar"]
) .bases-toolbar-item {
	display: none;
}

Type “no-toolbar” in the embed alt-text:

![[example.base|no-toolbar]]

Or type “bases-no-toolbar” in the note’s cssclasses:

---
cssclasses:
  - bases-no-toolbar
---

Or change the key phrases to something you like better.

4 Likes

Wonderful! Works like a charm. Thank you so much!

@Rangali If you let us know which one it was, we can have a look.

You can post the link to it in a code block. e.g.

```
https://forum.obsidian.md/t/bases-hide-toolbar-after-updating-to-obsidian-1-10-3/107901
```

Once you are around the forum a bit more you’ll be able to post clickable links.

@ariehen Here it is …

https://forum.obsidian.md/t/bases-hide-toolbar/103391

See there in #post 2

Ah, from the .query-toolbar and .mod-views days before the .bases-toolbar naming schema

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