Display file list as lines instead of bullets

Is there a way to print a dataview list as lines instead of a bulleted list?

Let’s say I have a Folder with three files in it. To list the files in the Folder

LIST 
FROM "Folder"

makes a list of the files in the folder as a bulleted list.

  • File
  • File
  • File

I want to make the list items look like normal lines instead.
File
File
File

Is there a way to write the specific query like this?
Thanks!

Update
This isn’t for a specific query but, I found a solution here for all dataview lists: CSS for dataview lists

.dataview.list-view-ul {
padding-left: 0px;
list-style-type: none;
}

This will work for me : )

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