Is it possible to have a line between each "group by" in Dataview?

My data view runs well. Just wondering if it is possible to have a line across the table between each group?

Here is my current dataview query:

Table without ID Related-project AS Related-Project,rows.Status AS Status, rows.file.link AS Title,rows.Content-type AS Type
Where notetype= “Project”
Where file.name != “tmplt-Project”
Group by Related-project

I would like a line between each “Related-project”

Thanks for any input. :kissing_closed_eyes:

1 Like

This sounds like a use case for #custom-css !

Try changing the border attribute on the selector .table-view-table > tbody > tr > td. I am not very CSS knowledgeable, but you may need to add a cssclass to your file and put that class in front of the selector, or to use !important with the border attribute in order to win the specificity tie-breaker with dataview’s css file.

Maybe someone will have a pre-made snippet for you, or maybe there is one in one of the #share-showcase giant threads about CSS.

Thank you. Turns out my theme has a setting for it already. Appreciate the response.

1 Like

Neat! What did the combination of you and your theme change your borders to be?

I just added a line in between each group, and numbered the groups. Screen shot:

2 Likes

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