Make two columns like Notion with image and text

Hello ^^

I would like to know if there is a possibility in Obsidian to make two columns like in Notion and put an image in the first and a text in the second. I have already done some things with the Advanced Tables plugin but either I am doing it wrong or it is not possible.

Can someone help me with this?

1 Like

There is no feature to do it like in Notion. But you can do stuff like this with html and css.

(I have no idea if this is the best way. This is just an example I know about.)

<div style="width: 100%;">
  <div style="width: 50%; float: left;">This is column 1</div>
  <div style="width: 50%; float: right;">this is column 2</div>
</div>

Or like here with CSS: Column layout v table - #2 by Craig

If you’d like some help with Advanced Tables, please post an example of what you tried to do.

1 Like

Thank you very much for your answer and your examples. I have also seen these questions in the forum, but I had hoped that there was an easier way.

You should post this in the plugin idea or feature request section.

1 Like

That’s a good idea. Maybe other people will find it practical as well ^^

1 Like

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