Hi,
I got this one:
<img src="http://www.tedswoodworking.com/images/banners/bannerbox3.jpg" alt="TedsWoodworking Plans and Projects" width="250" height="236"/>
and I need to install this picture in my post at the place I want and make text wrap around picture. How can I do it?
if you want to wrap text around the img element then you should add the attribute of style="float:left;" and that should do it.
please use the code button or backticks to mark code.
edit your post with the html editor, and insert the code;
using either (in this section of your code):
<img style="float:left;" src="......... />
as @Ganners suggested,
or:
<img class="alignleft" src="....... />
if your theme supports image alignments.
(left or right is your choice)
where should I add it? Please give me example. I am newbie...