Remove bullet on dataviewjs table result

What I’m trying to do

I want to remove the bullet points when I create a dataview table using JS.
Currently, it looks like this:
image

Things I have tried

The minimal theme removes the bullets but I want it to be removed when I use a different theme. When I inspect element, it points to the “li.dataview-result-list-li::marker” element. Is there a way to remove this so the table looks cleaner.

TYA!

This removes the bullets (the ::markers) from a simple dataview list query:

.block-language-dataview ul > li::marker {
    content:'';
}

You could try that.

If it doesn’t work, you can share a sample query that produces what’s in your screenshot so we can have look.

// moved to custom CSS

That did the trick. Thank you so much!

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