Greetings,
Thanks for reading this request. I’m attempting to wrap a few paragraphs around an image. Does anyone have the appropriate Markdown or Twig Code for this?
Greetings,
Thanks for reading this request. I’m attempting to wrap a few paragraphs around an image. Does anyone have the appropriate Markdown or Twig Code for this?
You need to do this with CSS.
Use float: right
to push the image to the right of the text, and float: left
to push it to the left of the text. The text will wrap around the image so long as the image is before the paragraphs in the HTML.
Here’s a quick example.
HTML
<img id='image-id' src='path/to/url' />
<p>Text to wrap.</p>
<p>More text to wrap.</p>
CSS
#image-id {
float: left
}