To remove the title of a transclusion in Obsidian without showing the header title, you can use a CSS snippet. This method involves creating or modifying a CSS snippet in Obsidian to hide the transclusion titles. Based on the information provided in the search results, here’s a detailed guide on how to achieve this using a CSS snippet:

Step 1: Create a CSS Snippet

  1. Open Obsidian.
  2. Go to Settings > Appearance > CSS Snippets.
  3. Click on Open snippets folder.
  4. Create a new .css file in the snippets folder. You can name it something descriptive, like hide-transclusion-titles.css.

Step 2: Add CSS Code to Hide Titles

Edit the newly created .css file in a text editor and add the following CSS code to it:

.internal-embed[alt*="no-h"] .markdown-embed-content h1,
.internal-embed[alt*="no-h"] .markdown-embed-content h2,
.internal-embed[alt*="no-h"] .markdown-embed-content h3,
.internal-embed[alt*="no-h"] .markdown-embed-content h4,
.internal-embed[alt*="no-h"] .markdown-embed-content h5,
.internal-embed[alt*="no-h"] .markdown-embed-content h6 {
  display: none;
}

This CSS snippet targets transclusions with an alt attribute containing “no-h” and hides all headings (from h1 to h6) within the transcluded content[1].

Step 3: Activate the CSS Snippet

  1. Return to Obsidian’s Settings > Appearance > CSS Snippets.
  2. You should see your newly created snippet listed there. Click the refresh icon if it’s not showing up.
  3. Toggle the switch next to your snippet to activate it.

Step 4: Use the Snippet in Your Notes

To use this snippet and hide the titles of specific transclusions, you’ll need to modify your transclusion links by adding an alt text that includes “no-h”:

![[YourNote#yoursection|no-h]]

This method allows you to selectively hide the titles of transclusions by including “no-h” in the alternative text of the transclusion link. It’s a flexible approach that doesn’t require manual editing of each note to remove titles but instead uses CSS to control the display behavior[1].

Remember, this solution applies globally to all transclusions where you include “no-h” in the alt text, making it a versatile and reversible method for managing transclusion titles in Obsidian.

Citations: [1] https://forum.obsidian.md/t/headerless-transclusions/50241 [2] https://forum.obsidian.md/t/transclusion-keeps-me-from-tagging-causing-manual-work/28466 [3] https://www.reddit.com/r/ObsidianMD/comments/19ae963/automize_agenda_overview_and_hide_section_title/ [4] https://forum.obsidian.md/t/rename-name-or-hide-transclusion-block-titles/48753 [5] https://forum.obsidian.md/t/edit-transcluded-embedded-notes-blocks-in-place-likely-requires-wyswyg-first/15339/20 [6] https://forum.obsidian.md/t/hide-header-when-embedding-internal-link/34674 [7] https://forum.obsidian.md/t/is-there-a-way-to-not-show-the-file-title-in-the-transcluded-content/9118 [8] https://forum.obsidian.md/t/edit-transcluded-embedded-notes-blocks-in-place-likely-requires-wyswyg-first/15339?page=2 [9] https://forum.obsidian.md/t/add-an-ability-to-hide-embedded-note-header/26738 [10] https://www.reddit.com/r/ObsidianMD/comments/129q5q7/transcluded_file_shows_unwanted_file_name/?rdt=65317 [11] https://discourse.devontechnologies.com/t/devonthink-obsidian/73208 [12] https://github.com/kepano/obsidian-minimal/pulls [13] https://forum.obsidian.md/t/hide-filename-in-transclusions/22785 [14] https://github.com/zsviczian/obsidian-excalidraw-plugin [15] https://forum.obsidian.md/t/horizontal-lines-surrounding-transcludes-make-it-stop/28184 [16] https://forum.obsidian.md/t/transclusion-with-double-vertical-lines/61030 [17] https://discourse.devontechnologies.com/t/transclusion-not-working-as-expected-when-linking-outside-of-the-group/67777