How to wrap text with an image
-
How can text be wrapped around the image on my post. So far only the last line of the paragraph is wrapping.
<p>TEXT<img src="IMAGE" alt="NAME" align="middle" /></p>The blog I need help with is: (visible only to logged in users)
-
First off there is no “middle” align, it is “center” and you cannot wrap text around a centered image. Right and left align produce wrapped text.
Secondly, the image code has to be first, then the text will follow it as below.
<img class="alignleft" title="" src="URL_of_image" alt="" />This is some text that will wrap the image.And why hand code the HTML when the visual editor will do it all for you with far less pain?
-
If you wanted it right aligned:
<img class="alignright" title="" src="URL_of_image" alt="" />This is some text that will wrap the image. -
Here is a link to wrapping the text with an image.
<img style="border: 0pt none; float:right; padding-left:10px; padding-bottom:10px" src="images/trees.jpg" .../>I don’t like the visual box as it is very annoying. Thanks for the details.
-
“If you wanted it right aligned:”
That made the image disappear – same as posted on here yesterday.
-
-
-
- The topic ‘How to wrap text with an image’ is closed to new replies.