CSS to hide properties field in embedded note (Obsidian Version 1.9.4)

Can anyone suggest CSS to hide the properties field in an embedded note?

TIA

This one …

```css
.markdown-embed-content.node-insert-event .metadata-container {
  display: none !important;
}
```

… works for me. I tried in edit and reading mode. Hope it helps you to play further.

Cheers, Marko :nerd_face:

That didn’t work for me, but I understand (after running a search at the Discord forum) that the issue will be fixed with the next update.

1 Like

This is working on my end:

.markdown-embed .metadata-container .is-collapsed,
.markdown-embed .metadata-container.is-collapsed {
    display: none;
    padding-block: 0;
}

CleanShot 2025-07-05 at 08.08.21

but yeah, it seems a bug and will be fixed in the next patch.

Thanks so much! That worked for me. I was going to be miserable until they fixed that because I use so many embedded notes.

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