Hide file icon next to items in bookmark tab

Hi,

Does anybody know the CSS snippet to hide the small grey file icons present on the left of bookmarked items in the bookmark tab?

Thanks a lot!

Turn off Search option in Core Plugin.

I think they mean the icons on the left here:

If so, try this to start:

.workspace-leaf-content[data-type="bookmarks"] .tree-item-icon .svg-icon.lucide-file {
    display: none;
}

https://help.obsidian.md/Extending+Obsidian/CSS+snippets if needed.

1 Like

This worked! Thank you so much!