Change image alignment from center to left

What I’m trying to do

Hello, I would like to change the image alignment from center to left:

Things I have tried

I am using a theme called “Blue Topaz” and I was able to change the line width.
I’m not fit in CSS, so I tried something like this but it didn’t work out:

img{
    margin-left: initial;
}

Do you have some ideas how to change the position from center to the left? Thanks

SIRvb’s image adjustment snippet has heaps of options.

You could also try something like this:

img[alt*="left"] {
    float:left;
    clear:left;
    margin-right: 1rem;
    margin-bottom: 4px;
    margin-top: 4px;
}

The link is written as ![[image.png|left]].

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