How do I make the cover image be on the leftmost column?

Things I have tried

```dataview
table ("![coverimg|100](" + cover + ")") as Cover, category as "Category", length as "length", status as "status"
FROM #reference AND -#finished AND -#archived
SORT row.length 
[I can't format it in this website but I put a ``` here too]

What I’m trying to do

I want the cover image to be in the leftmost column and the file name to follow it in the second row. You know, like Goodreads.

Edit: Sorry I meant column

Use TABLE WITHOUT ID (capitalization does not matter, I just have a habit of capitalizing dataview keywords) to make the left column go away, then you can add it back in second if needed.

TABLE WITHOUT ID 
("![coverimg|100](" + cover + ")") AS Cover, 
file.link AS "Note",
category as "Category", 
length as "length", 
status as "status"
FROM #reference AND -#finished AND -#archived
SORT row.length

Happy reading!

Thank you for your prompt reply and solution!

1 Like

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