Text next to an image

Jump to solution
jmcmillan2
Community Novice

How can I put text to the right of an image? My only option seems to be adding text below an image in rich text editor.

1 Solution
James
Community Champion

 @jmcmillan2 

Click on the picture, then click on the "Align left" button on the toolbar.

311519_pastedImage_2.png

Note that this does not leave any space between your image and the text and so it may look bad. If you want to do add spacing, you'll need to open the HTML editor after you've left aligned it. Then find the img element.

You'll see something like the first line (the ... are an ellipsis). You need to change the style to have some padding, similar to what's shown in the second line.

<img style="float: left;" ... />
<img style="float: left; padding-right: 1em; padding-bottom: 1em;" ... />

Adding those paddings will make it look like this:

311521_pastedImage_4.png

View solution in original post