Text next to an image
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2019
06:26 PM
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.
Solved! Go to Solution.
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2019
09:47 PM
Click on the picture, then click on the "Align left" button on the toolbar.
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:
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.