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 johnlvs2run.wordpress.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
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 johnlvs2run.wordpress.com.
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.
<img class=alignright" title="NAME" src="IMAGE" alt="NAME" />
becomes </img>
Correction - becomes <img />
Okay, added the " and got it now. Thanks!
This topic has been closed to new replies.