Hi,
I have a lot of use for lists that look like this:
What would be the most efficient way of achieving this?
Hi,
I have a lot of use for lists that look like this:
What would be the most efficient way of achieving this?
To preserve that kind of formatting you’ll need to use a table, something like:
| number | header 1 | header 2 |
---------
| 20 | vingth | vahn |
| 21 | vingth-et-un | vahn-tay-ahn |
If you use the advanced tables plugin, the columns will align themselves in the edit mode, which I like a lot for stuff like this
Thanks,
I have advanced tables and have explored it.
Is there a way to get rid of the table borders and adjust column width?
You can use CSS snippets in combination with the cssclass
property to
remove borders from the table within a note.
What theme are you using? And do you use live preview or reading mode?
Another way is to use multiple columns, my favorite is efemkay’s modular-css-layout
I really hope that future versions of Obsidian will add the ability to :
I’ve yet to dive into the CSS realm, it’s all new to me, I’ll look into it.
I was using minimal theme but reverted back to default for now.
I also toggle between reading mode and editing mode all the time.
So far I’m having to accept that basic tables for my needs are 10x more efficient to do in Numbers (Mac), which I use a lot.
And then if need be I can just copy paste them onto Obsidian, which works pretty well.
I’m hoping to use Obsidian for everything, but so far the tables are keeping me in Numbers. Community is great though.
I’ll look into it.
+1 to your suggestion.
Sorry that it took me some time, but I’ve been kind of busy with other stuff, and I was kind of hoping that others might have chipped in on the CSS part.
If you insert the following in a CSS snippet:
.no_table_border .markdown-rendered td,
.no_table_border .markdown-rendered th {
border: none;
}
And then insert the cssclasses: no_table_border
into the properties of any file where you don’t want table borders, they’ll disappear in both live preview and reading.
vault/.obsidian/snippets
, which is were you want to save your css snippetmyCss.css
, where you copy the CSS into. Make sure this actually is a text file, and that the name ends in .css
myCss
in the list of CSS snippets. If not, hit the refresh buttonThis topic was automatically closed 90 days after the last reply. New replies are no longer allowed.