How to left-align Images?

Things I have tried

I browsed several YT vids, tutorials and stuff. Already tried to solve my issue with div-tags and some html/css. But none worked so far.

What I’m trying to do

I take screenshots with Greenshot from books I am currently studying on for my exams. Practically I would like to copy + paste them to my notes in Obsidian.
Unfortunately, they are centered - I really would like them to be left aligned like the text.
Any ideas how to achieve this?

Thanks for any support.
Note: I am rather new to all this markdown and Obsidian workflow - so if you could explain it in easy words :wink:

Thanks!
All the best,
Flo

3 Likes

You could try adding this to a custom CSS snippet:

img{
    margin-left: initial;
}

If you need help with adding custom css, this should help.

4 Likes

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