Dataview - Create dynamic tables using data stored in note properties’s list type automatically creates bullet points before each entry, which is often undesirable. The following CSS snippets hide these first-level bullet points of and reduce the indentation by one level to start like regular paragraphs.

Add a custom CSS snippet to Obsidian to hide first level bullet point in query results.

/* no need the previous padding adjustment if using Minimal */
ul.dataview.list-view-ul {
	list-style: none;
    padding-left: 0;
}
 
/* reinstate the bullet to "subpoints" but also adjust the position
   for the bullet to be on the inside (for compatibility with Minimal) */
ul.dataview.dataview-ul.dataview-result-list-ul {
	list-style: disc;
	/* margin-left: 1.5rem; */
}

The Digital Garden plugin converts Dataview queries to pure Markdown so that it can be rendered by Eleventy. Unfortunately, the CSS classes of the list elements are lost, so generated list outputs cannot be distinguished from manually created Markdown bullet lists. Therefore the change can only be applied for all lists.

/* no need the previous padding adjustment if using Minimal */
ul {
	list-style: none;
    padding-left: 0;
}
 
/* reinstate the bullet to "subpoints" but also adjust the position
   for the bullet to be on the inside (for compatibility with Minimal) */
ul ul {
	list-style: disc;
	margin-left: 1.5rem;
}

Sources:

Related:

Tags:
Dataview - Create dynamic tables using data stored in note properties