I am setting up a new site for a non-profit. The theme I chose uses the new Gutenberg only. I would like an image on the left and description on the right, with another image below that, with the accompanying description to its right. No matter what I do in the editor, I can't move the lower image down and to justify left. I have screen shots of the editor page and what it looks like on the site.
I am setting up a new site for a non-profit. The theme I chose uses the new Gutenberg only. I would like an image on the left and description on the right, with another image below that, with the accompanying description to its right. No matter what I do in the editor, I can't move the lower image down and to justify left. I have screen shots of the editor page and what it looks like on the site.
In Customize -> Additional CSS, add the following code:
.clearflow {
clear: both;
}
figure.alignleft {
margin-right: 1rem;
}
Insert blocks in the following order:
Image
Paragraph
...
Paragraph
Image
Paragraph
...
Paragraph
Select Image block, and on its toolbar, select Align left icon. In Advanced -> Additional CSS Class section, add clearflow
class.
Repeat this for every Image block.